summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorNick Cao <nickcao@nichi.co>2023-05-24 21:48:10 -0600
committerGitHub <noreply@github.com>2023-05-24 21:48:10 -0600
commit74e6f7f561be7c82b2177425d0f0404bc91eddf5 (patch)
treecc9b8d373da3c6b1a62e82a16114b313892f5989 /pkgs/development
parent3f70e5731e6a8af3a2194ead805f1380ee578773 (diff)
parent1090358cdf1a12c2fd28b6c1dd1612ec94621b26 (diff)
Merge pull request #233911 from NixOS/backport-233666-to-release-23.05
[Backport release-23.05] wasmtime: 9.0.0 -> 9.0.1
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/interpreters/wasmtime/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/development/interpreters/wasmtime/default.nix b/pkgs/development/interpreters/wasmtime/default.nix
index 51414afed7488..0396486fbd05e 100644
--- a/pkgs/development/interpreters/wasmtime/default.nix
+++ b/pkgs/development/interpreters/wasmtime/default.nix
@@ -2,23 +2,23 @@
 
 rustPlatform.buildRustPackage rec {
   pname = "wasmtime";
-  version = "9.0.0";
+  version = "9.0.1";
 
   src = fetchFromGitHub {
     owner = "bytecodealliance";
     repo = pname;
     rev = "v${version}";
-    hash = "sha256-9ga7BKJoaw7naX8t4o+zNnWkjIvSII5oVRM0dYMrseo=";
+    hash = "sha256-6pZZawygFxE5rWkdJUaJLxTd5pZiC0o1Rvc5Zl6YJpw=";
     fetchSubmodules = true;
   };
 
-  cargoHash = "sha256-GkL78aAIGdSlcxeRTIVp1jcXIg1ZtvB2LNIoPEViNcs=";
+  cargoHash = "sha256-GUYd5/1pekOHG1e0WBxjOe3/foZ5YdU2ovF0btZ6+ec=";
 
   cargoBuildFlags = [ "--package" "wasmtime-cli" "--package" "wasmtime-c-api" ];
 
   outputs = [ "out" "dev" ];
 
-  buildInputs = lib.optionals stdenv.isDarwin [ Security ];
+  buildInputs = lib.optional stdenv.isDarwin Security;
 
   # SIMD tests are only executed on platforms that support all
   # required processor features (e.g. SSE3, SSSE3 and SSE4.1 on x86_64):