nixpkgs/pkgs/applications/misc/sigi/default.nix

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

31 lines
811 B
Nix
Raw Normal View History

{ lib, rustPlatform, fetchCrate, installShellFiles, testers, sigi }:
2022-01-01 07:38:29 +00:00
rustPlatform.buildRustPackage rec {
pname = "sigi";
2023-01-04 20:10:19 +00:00
version = "3.6.0";
2022-01-01 07:38:29 +00:00
2022-01-12 10:57:15 +00:00
src = fetchCrate {
inherit pname version;
2023-01-04 20:10:19 +00:00
sha256 = "sha256-VhBrSepJdwJRu+AqXWUzdDO4ukJPeoZr07B/X8Jr/RA=";
2022-01-01 07:38:29 +00:00
};
2023-01-04 20:10:19 +00:00
cargoSha256 = "sha256-R1U0ZYQMA1VFd5zEjFzl5QhwqqEMaCFb/5H509IBj60=";
2022-01-12 10:57:15 +00:00
nativeBuildInputs = [ installShellFiles ];
2022-03-30 09:19:32 +00:00
# In case anything goes wrong.
checkFlags = [ "RUST_BACKTRACE=1" ];
2022-03-10 07:11:56 +00:00
2022-01-12 10:57:15 +00:00
postInstall = ''
installManPage sigi.1
'';
passthru.tests.version = testers.testVersion { package = sigi; };
2022-01-01 07:38:29 +00:00
meta = with lib; {
2022-03-10 07:11:56 +00:00
description = "Organizing CLI for people who don't love organizing.";
2022-11-12 06:31:24 +00:00
homepage = "https://github.com/sigi-cli/sigi";
2022-01-12 10:57:15 +00:00
license = licenses.gpl2;
2022-01-01 07:38:29 +00:00
maintainers = with maintainers; [ hiljusti ];
};
}