From 27da29240e4382850f0f6e804102fe7280db1033 Mon Sep 17 00:00:00 2001 From: figsoda Date: Sun, 10 Sep 2023 17:53:05 -0400 Subject: [PATCH] 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 --- pkgs/development/tools/misc/rsonpath/default.nix | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/pkgs/development/tools/misc/rsonpath/default.nix b/pkgs/development/tools/misc/rsonpath/default.nix index 448b48ea700d..b078030d8cec 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;