summary refs log tree commit diff
path: root/pkgs/applications/misc/sigi/default.nix
blob: 62b8dd576591f97998ae73afff7db1608db3e373 (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.3";

  src = fetchCrate {
    inherit pname version;
    sha256 = "sha256-tjhNE20GE1L8kvhdI5Mc90I75q8szOIV40vq2CBt98U=";
  };

  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-0e0r6hfXGJmrc6tgCqq2dQXu2MhkThViZwdG3r3g028=";

  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 ];
  };
}