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

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

32 lines
837 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";
version = "3.6.3";
2022-01-01 07:38:29 +00:00
2022-01-12 10:57:15 +00:00
src = fetchCrate {
inherit pname version;
hash = "sha256-JGQ9UbkS3Q1ohy6vtiUlPijuffH4Gb99cZCKreGqE/U=";
2022-01-01 07:38:29 +00:00
};
cargoHash = "sha256-W/ekk4tsYxG7FXzJW5i0Ii7nLgDHCSCjO3couN+/sMk=";
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;
maintainers = with maintainers; [ booniepepper ];
2024-02-11 02:19:15 +00:00
mainProgram = "sigi";
2022-01-01 07:38:29 +00:00
};
}