diff --git a/pkgs/development/interpreters/wasmer/default.nix b/pkgs/development/interpreters/wasmer/default.nix index 5666b078b4c..f5a334c4165 100644 --- a/pkgs/development/interpreters/wasmer/default.nix +++ b/pkgs/development/interpreters/wasmer/default.nix @@ -14,18 +14,20 @@ rustPlatform.buildRustPackage rec { pname = "wasmer"; - version = "3.1.1"; + version = "4.0.0"; src = fetchFromGitHub { owner = "wasmerio"; repo = pname; rev = "refs/tags/v${version}"; - hash = "sha256-797I3FBBfnAgNfOdMajm3WNkMo3MUXb1347LBggXrLk="; + hash = "sha256-vpIvoKvIqXgJ6MtuqM3dryR8nxLB/diLyQYcuGkZDLU="; }; - cargoHash = "sha256-zUTwhfRLKUixgj3JXiz2QOuwbFhfget+GcFSRL1QJ3w="; + cargoHash = "sha256-1Gx8MLPAA/LV9jdK8gkztcsjltju0ousETLEiTEAaEo="; - nativeBuildInputs = [ rustPlatform.bindgenHook ]; + nativeBuildInputs = [ + rustPlatform.bindgenHook + ]; buildInputs = lib.optionals withLLVM [ llvmPackages.llvm @@ -37,14 +39,8 @@ rustPlatform.buildRustPackage rec { Security ]; - LLVM_SYS_120_PREFIX = lib.optionalString withLLVM llvmPackages.llvm.dev; - # check references to `compiler_features` in Makefile on update - buildFeatures = checkFeatures ++ [ - "webc_runner" - ]; - - checkFeatures = [ + buildFeatures = [ "cranelift" "wasmer-artifact-create" "static-artifact-create" @@ -56,6 +52,8 @@ rustPlatform.buildRustPackage rec { cargoBuildFlags = [ "--manifest-path" "lib/cli/Cargo.toml" "--bin" "wasmer" ]; + env.LLVM_SYS_140_PREFIX = lib.optionalString withLLVM llvmPackages.llvm.dev; + meta = with lib; { description = "The Universal WebAssembly Runtime"; longDescription = '' diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 6fb6531ac1f..9693c83e1ae 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -40267,7 +40267,7 @@ with pkgs; wamr = callPackage ../development/interpreters/wamr { }; wasmer = callPackage ../development/interpreters/wasmer { - llvmPackages = llvmPackages_12; + llvmPackages = llvmPackages_14; inherit (darwin.apple_sdk.frameworks) CoreFoundation SystemConfiguration Security; };