about summary refs log tree commit diff
path: root/pkgs/applications/misc/sigi/default.nix
diff options
context:
space:
mode:
authorhiljusti <hiljusti@so.dang.cool>2022-03-30 02:19:32 -0700
committerhiljusti <hiljusti@so.dang.cool>2022-04-21 03:23:15 -0700
commit719761bb77ec3dab163c80be55c41baad1e4a246 (patch)
treec9cd73b0f2f322fd533df01de78b2e84e46185ed /pkgs/applications/misc/sigi/default.nix
parent5af2704214270c4475f6a6de2735ae64822d39e9 (diff)
sigi: 3.0.3 -> 3.2.1
Diffstat (limited to 'pkgs/applications/misc/sigi/default.nix')
-rw-r--r--pkgs/applications/misc/sigi/default.nix13
1 files changed, 5 insertions, 8 deletions
diff --git a/pkgs/applications/misc/sigi/default.nix b/pkgs/applications/misc/sigi/default.nix
index 62b8dd576591f..2513476ad74e9 100644
--- a/pkgs/applications/misc/sigi/default.nix
+++ b/pkgs/applications/misc/sigi/default.nix
@@ -2,26 +2,23 @@
 
 rustPlatform.buildRustPackage rec {
   pname = "sigi";
-  version = "3.0.3";
+  version = "3.2.1";
 
   src = fetchCrate {
     inherit pname version;
-    sha256 = "sha256-tjhNE20GE1L8kvhdI5Mc90I75q8szOIV40vq2CBt98U=";
+    sha256 = "sha256-1eZ6i0CvjNyYlWb7c0OPlGtvVSFpi8hiOl/7qeeE9wA=";
   };
 
+  cargoSha256 = "sha256-Tyrcu/BYt9k4igiEIiZ2I7VIGiBZ3D2i6XfT/XGlU+U=";
   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" ];
+  # In case anything goes wrong.
+  checkFlags = [ "RUST_BACKTRACE=1" ];
 
   postInstall = ''
     installManPage sigi.1
   '';
 
-  cargoSha256 = "sha256-0e0r6hfXGJmrc6tgCqq2dQXu2MhkThViZwdG3r3g028=";
-
   passthru.tests.version = testVersion { package = sigi; };
 
   meta = with lib; {