about summary refs log tree commit diff
path: root/pkgs/applications/misc/sigi
diff options
context:
space:
mode:
authorhiljusti <hiljusti@so.dang.cool>2022-03-09 23:11:56 -0800
committerhiljusti <hiljusti@so.dang.cool>2022-03-09 23:11:56 -0800
commitdca5021c14e1bb75353be2f50aafb78ddb01e710 (patch)
treefce83866753181ac50c871562e41839eea688470 /pkgs/applications/misc/sigi
parent5dd8960d56c66bf969d996e3677c6a6a89eb4730 (diff)
sigi: 3.0.0 -> 3.0.2
Diffstat (limited to 'pkgs/applications/misc/sigi')
-rw-r--r--pkgs/applications/misc/sigi/default.nix13
1 files changed, 9 insertions, 4 deletions
diff --git a/pkgs/applications/misc/sigi/default.nix b/pkgs/applications/misc/sigi/default.nix
index 731608db7da16..674432e7a024d 100644
--- a/pkgs/applications/misc/sigi/default.nix
+++ b/pkgs/applications/misc/sigi/default.nix
@@ -2,25 +2,30 @@
 
 rustPlatform.buildRustPackage rec {
   pname = "sigi";
-  version = "3.0.0";
+  version = "3.0.2";
 
   src = fetchCrate {
     inherit pname version;
-    sha256 = "sha256-1xZMj6NjwA9pVOEL4CDv4XHC3usu3WdjsLJuW3vgxc8=";
+    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-NUWm2GkK7bASo6bAOgQgHate45iDG5l3G/KhtLrjzQ8=";
+  cargoSha256 = "sha256-vO9ocTDcGt/T/sLCP+tCHXihV1H2liFDjI7OhhmPd3I=";
 
   passthru.tests.version = testVersion { package = sigi; };
 
   meta = with lib; {
-    description = "CLI tool for organization and planning";
+    description = "Organizing CLI for people who don't love organizing.";
     homepage = "https://github.com/hiljusti/sigi";
     license = licenses.gpl2;
     maintainers = with maintainers; [ hiljusti ];