Merge pull request #277007 from NickCao/wasmer

wasmer: 4.2.1 -> 4.2.5
This commit is contained in:
Nick Cao 2023-12-28 13:38:57 -05:00 committed by GitHub
commit 4877d206e5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 6 deletions

View File

@ -14,16 +14,16 @@
rustPlatform.buildRustPackage rec { rustPlatform.buildRustPackage rec {
pname = "wasmer"; pname = "wasmer";
version = "4.2.1"; version = "4.2.5";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "wasmerio"; owner = "wasmerio";
repo = pname; repo = pname;
rev = "refs/tags/v${version}"; rev = "refs/tags/v${version}";
hash = "sha256-GROw9TYKC53ECJUeYhCez8f2jImPla/lGgsP91tTGjQ="; hash = "sha256-zCaN0F6a8qkZkOmHMU0D70KaY4H8pUXElJbyvOCjogc=";
}; };
cargoHash = "sha256-JE7FDF4MWhqJbL7ZP+yzfV7/Z79x0NuQLYNwWwMjAao="; cargoHash = "sha256-ugysqLQlnSzm0W4zW6LPSn6KjwpAtJZGEkzk/nWahWg=";
nativeBuildInputs = [ nativeBuildInputs = [
rustPlatform.bindgenHook rustPlatform.bindgenHook
@ -52,7 +52,7 @@ rustPlatform.buildRustPackage rec {
cargoBuildFlags = [ "--manifest-path" "lib/cli/Cargo.toml" "--bin" "wasmer" ]; cargoBuildFlags = [ "--manifest-path" "lib/cli/Cargo.toml" "--bin" "wasmer" ];
env.LLVM_SYS_140_PREFIX = lib.optionalString withLLVM llvmPackages.llvm.dev; env.LLVM_SYS_150_PREFIX = lib.optionalString withLLVM llvmPackages.llvm.dev;
# Tests are failing due to `Cannot allocate memory` and other reasons # Tests are failing due to `Cannot allocate memory` and other reasons
doCheck = false; doCheck = false;
@ -67,6 +67,6 @@ rustPlatform.buildRustPackage rec {
''; '';
homepage = "https://wasmer.io/"; homepage = "https://wasmer.io/";
license = licenses.mit; license = licenses.mit;
maintainers = with maintainers; [ Br1ght0ne shamilton ]; maintainers = with maintainers; [ Br1ght0ne shamilton nickcao ];
}; };
} }

View File

@ -41367,7 +41367,7 @@ with pkgs;
wamr = darwin.apple_sdk_11_0.callPackage ../development/interpreters/wamr { }; wamr = darwin.apple_sdk_11_0.callPackage ../development/interpreters/wamr { };
wasmer = callPackage ../development/interpreters/wasmer { wasmer = callPackage ../development/interpreters/wasmer {
llvmPackages = llvmPackages_14; llvmPackages = llvmPackages_15;
inherit (darwin.apple_sdk.frameworks) CoreFoundation SystemConfiguration Security; inherit (darwin.apple_sdk.frameworks) CoreFoundation SystemConfiguration Security;
}; };