aaa: init at 1.1.1

This commit is contained in:
DomesticMoth 2022-12-03 12:35:41 +00:00 committed by Winter
parent 0fabdf73bb
commit 470353b625
2 changed files with 26 additions and 0 deletions

View file

@ -0,0 +1,24 @@
{ lib
, rustPlatform
, fetchFromGitHub
}:
rustPlatform.buildRustPackage rec {
pname = "aaa";
version = "1.1.1";
src = fetchFromGitHub {
owner = "DomesticMoth";
repo = pname;
rev = "v${version}";
sha256 = "sha256-gIOlPjZOcmVLi9oOn4gBv6F+3Eq6t5b/3fKzoFqxclw=";
};
cargoSha256 = "sha256-ugB0r9qiGRurc30GrJH4MKM6fWZ99+f1Gy7/1lSmrwU=";
meta = with lib; {
description = "Terminal viewer for 3a format";
homepage = "https://github.com/DomesticMoth/aaa";
license = with licenses; [ gpl3Only ];
maintainers = with maintainers; [ DomesticMoth ];
};
}

View file

@ -1138,6 +1138,8 @@ with pkgs;
_9pfs = callPackage ../tools/filesystems/9pfs { };
aaa = callPackage ../tools/misc/aaa {};
aardvark-dns = callPackage ../tools/networking/aardvark-dns { };
a2ps = callPackage ../tools/text/a2ps { };