about summary refs log tree commit diff
path: root/pkgs/development/tools/misc
diff options
context:
space:
mode:
authorfigsoda <figsoda@pm.me>2023-09-10 17:53:05 -0400
committerfigsoda <figsoda@pm.me>2023-09-10 18:16:47 -0400
commit27da29240e4382850f0f6e804102fe7280db1033 (patch)
tree8534c0b44e256c3ffe0ad8c9ee7d5959585ad4ac /pkgs/development/tools/misc
parent8779cf07c38b06861cb3e3a265903cb83992d00b (diff)
rsonpath: 0.7.1 -> 0.8.0
Diff: https://github.com/v0ldek/rsonpath/compare/v0.7.1...v0.8.0

Changelog: https://github.com/v0ldek/rsonpath/blob/v0.8.0/CHANGELOG.md
Diffstat (limited to 'pkgs/development/tools/misc')
-rw-r--r--pkgs/development/tools/misc/rsonpath/default.nix10
1 files changed, 3 insertions, 7 deletions
diff --git a/pkgs/development/tools/misc/rsonpath/default.nix b/pkgs/development/tools/misc/rsonpath/default.nix
index 448b48ea700d1..b078030d8cecf 100644
--- a/pkgs/development/tools/misc/rsonpath/default.nix
+++ b/pkgs/development/tools/misc/rsonpath/default.nix
@@ -1,24 +1,20 @@
 { lib
-, stdenv
 , rustPlatform
 , fetchFromGitHub
-, withSimd ? stdenv.isx86_64
 }:
 
 rustPlatform.buildRustPackage rec {
   pname = "rsonpath";
-  version = "0.7.1";
+  version = "0.8.0";
 
   src = fetchFromGitHub {
     owner = "v0ldek";
     repo = "rsonpath";
     rev = "v${version}";
-    hash = "sha256-ip5phYOoUm7I0SsnfXVGzgt+OFXjXKt4hiFjH3nkacA=";
+    hash = "sha256-WrapSvWoaBVxlpCxau70Et5K9tRs84xsXBDWsuoFI+E=";
   };
 
-  cargoHash = "sha256-T2aR3PCQ5BcJZ+Aw/yLJ6vbLxkrKrNnsZkXwo0G9BZE=";
-
-  buildNoDefaultFeatures = !withSimd;
+  cargoHash = "sha256-fGu6eypizOGHCiyAeH7nCLHyfVLMBPNU1xmqfVGhSzw=";
 
   cargoBuildFlags = [ "-p=rsonpath" ];
   cargoTestFlags = cargoBuildFlags;