about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorfigsoda <figsoda@pm.me>2021-10-31 22:54:35 -0400
committerGitHub <noreply@github.com>2021-10-31 22:54:35 -0400
commit509d236edf0056d05547c776140fe7cfcf2305bd (patch)
treeb00e54450cc91e61d189f044d38d1c045e3c40d6 /pkgs
parent8d8a17f889e7df0b7742505ea87ee4dce1a83433 (diff)
parent9ec2134b6864019849f4fc267ecab6ddd88e9cea (diff)
Merge pull request #144057 from figsoda/update-statix
statix: 0.3.1 -> 0.3.4
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/tools/nix/statix/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/tools/nix/statix/default.nix b/pkgs/tools/nix/statix/default.nix
index 944abac0d34d0..fdecf36717aab 100644
--- a/pkgs/tools/nix/statix/default.nix
+++ b/pkgs/tools/nix/statix/default.nix
@@ -4,16 +4,16 @@ rustPlatform.buildRustPackage rec {
   pname = "statix";
   # also update version of the vim plugin in pkgs/misc/vim-plugins/overrides.nix
   # the version can be found in flake.nix of the source code
-  version = "0.3.1";
+  version = "0.3.4";
 
   src = fetchFromGitHub {
     owner = "nerdypepper";
     repo = pname;
     rev = "v${version}";
-    sha256 = "sha256-Jh3ErzK8vqEdDtZP7O/PAmHQznUTB18nCQwfckFxyLA=";
+    sha256 = "sha256-8xWtwa9ZtkcpWvLG2QS3jPlz2c+E5MjYWhZ/g5bjhkc=";
   };
 
-  cargoSha256 = "sha256-y+vBHAHTe++tYOWWQ5ioFlprRfDximZE8KSGNNBSPAk=";
+  cargoSha256 = "sha256-f8f5wJyK+q6zTfNiCRN89ptlSWfSnrzLyefTIpw5mts=";
 
   cargoBuildFlags = lib.optionals withJson [ "--features" "json" ];