nixpkgs/pkgs/tools/misc/aaa/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
590 B
Nix
Raw Normal View History

2022-12-03 12:35:41 +00:00
{ 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 ];
};
}