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