summary refs log tree commit diff
path: root/pkgs/applications/misc/sigi/default.nix
blob: 674432e7a024db5455187fae1b7d42ad8b9273a4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{ lib, rustPlatform, fetchCrate, installShellFiles, testVersion, sigi }:

rustPlatform.buildRustPackage rec {
  pname = "sigi";
  version = "3.0.2";

  src = fetchCrate {
    inherit pname version;
    sha256 = "sha256-N+8DdokiYW5mHIQJisdTja8xMVGip37X6c/xBYnQaRU=";
  };

  nativeBuildInputs = [ installShellFiles ];

  # As part of its tests, sigi hard-codes a location to BATS based on git
  # submodules. The tests are recommeded to skip for Linux packaging. They'll
  # move to Rust after this issue: https://github.com/hiljusti/sigi/issues/19
  checkFlags = [ "SKIP_BATS_TESTS=1" ];

  postInstall = ''
    installManPage sigi.1
  '';

  cargoSha256 = "sha256-vO9ocTDcGt/T/sLCP+tCHXihV1H2liFDjI7OhhmPd3I=";

  passthru.tests.version = testVersion { package = sigi; };

  meta = with lib; {
    description = "Organizing CLI for people who don't love organizing.";
    homepage = "https://github.com/hiljusti/sigi";
    license = licenses.gpl2;
    maintainers = with maintainers; [ hiljusti ];
  };
}