From 4907906a8885d48e98bf46f3cceccff46d8b018c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafael=20Fern=C3=A1ndez=20L=C3=B3pez?= Date: Tue, 23 May 2023 21:42:42 +0200 Subject: [PATCH] wasmtime: 9.0.0 -> 9.0.1 --- pkgs/development/interpreters/wasmtime/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/development/interpreters/wasmtime/default.nix b/pkgs/development/interpreters/wasmtime/default.nix index 51414afed748..0396486fbd05 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):