wasmer: 5.0.0 -> 5.0.1 (#354116)

authored by Theodore Ni and committed by GitHub 92c3f8cf 5c44f6f7

+24 -25
+24 -24
pkgs/development/interpreters/wasmer/default.nix
··· 1 - { stdenv 2 - , lib 3 - , rustPlatform 4 - , fetchFromGitHub 5 - , llvmPackages 6 - , libffi 7 - , libxml2 8 - , CoreFoundation 9 - , SystemConfiguration 10 - , Security 11 - , withLLVM ? !(stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isAarch64) 12 - , withSinglepass ? true 13 }: 14 15 rustPlatform.buildRustPackage rec { 16 pname = "wasmer"; 17 - version = "5.0.0"; 18 19 src = fetchFromGitHub { 20 owner = "wasmerio"; 21 repo = pname; 22 rev = "refs/tags/v${version}"; 23 - hash = "sha256-zTz4UK+A4HWf+XGaTh7FOUFEeB9JnZooFnxZ4K3AFGw="; 24 }; 25 26 - cargoHash = "sha256-YSnGGd2uIxvhxDTJjtQMdv4Qx1DE7RA05Z+q4emJAKg="; 27 28 nativeBuildInputs = [ 29 rustPlatform.bindgenHook ··· 33 llvmPackages.llvm 34 libffi 35 libxml2 36 - ] ++ lib.optionals stdenv.hostPlatform.isDarwin [ 37 - CoreFoundation 38 - SystemConfiguration 39 - Security 40 ]; 41 42 # check references to `compiler_features` in Makefile on update ··· 46 "static-artifact-create" 47 "wasmer-artifact-load" 48 "static-artifact-load" 49 - ] 50 - ++ lib.optional withLLVM "llvm" 51 - ++ lib.optional withSinglepass "singlepass"; 52 53 - cargoBuildFlags = [ "--manifest-path" "lib/cli/Cargo.toml" "--bin" "wasmer" ]; 54 55 env.LLVM_SYS_180_PREFIX = lib.optionalString withLLVM llvmPackages.llvm.dev; 56 ··· 69 homepage = "https://wasmer.io/"; 70 license = lib.licenses.mit; 71 platforms = with lib.platforms; linux ++ darwin; 72 - maintainers = with lib.maintainers; [ Br1ght0ne shamilton nickcao ]; 73 }; 74 }
··· 1 + { 2 + lib, 3 + rustPlatform, 4 + fetchFromGitHub, 5 + llvmPackages, 6 + libffi, 7 + libxml2, 8 + withLLVM ? true, 9 + withSinglepass ? true, 10 }: 11 12 rustPlatform.buildRustPackage rec { 13 pname = "wasmer"; 14 + version = "5.0.1"; 15 16 src = fetchFromGitHub { 17 owner = "wasmerio"; 18 repo = pname; 19 rev = "refs/tags/v${version}"; 20 + hash = "sha256-tfAGPBc36o5/XtVZ8IW6SFr+iWOkFzVTfe9jI4PpuA0="; 21 }; 22 23 + cargoHash = "sha256-zvQJpAjZNfa54se2xaRPWCWoCWsWw1btaHYrWlyUIZY="; 24 25 nativeBuildInputs = [ 26 rustPlatform.bindgenHook ··· 30 llvmPackages.llvm 31 libffi 32 libxml2 33 ]; 34 35 # check references to `compiler_features` in Makefile on update ··· 39 "static-artifact-create" 40 "wasmer-artifact-load" 41 "static-artifact-load" 42 + ] ++ lib.optional withLLVM "llvm" ++ lib.optional withSinglepass "singlepass"; 43 44 + cargoBuildFlags = [ 45 + "--manifest-path" 46 + "lib/cli/Cargo.toml" 47 + "--bin" 48 + "wasmer" 49 + ]; 50 51 env.LLVM_SYS_180_PREFIX = lib.optionalString withLLVM llvmPackages.llvm.dev; 52 ··· 65 homepage = "https://wasmer.io/"; 66 license = lib.licenses.mit; 67 platforms = with lib.platforms; linux ++ darwin; 68 + maintainers = with lib.maintainers; [ 69 + Br1ght0ne 70 + shamilton 71 + nickcao 72 + ]; 73 }; 74 }
-1
pkgs/top-level/all-packages.nix
··· 19013 19014 wasmer = callPackage ../development/interpreters/wasmer { 19015 llvmPackages = llvmPackages_18; 19016 - inherit (darwin.apple_sdk.frameworks) CoreFoundation SystemConfiguration Security; 19017 }; 19018 19019 wavm = callPackage ../development/interpreters/wavm {
··· 19013 19014 wasmer = callPackage ../development/interpreters/wasmer { 19015 llvmPackages = llvmPackages_18; 19016 }; 19017 19018 wavm = callPackage ../development/interpreters/wavm {