c7e6337bd0
GitOrigin-RevId: 08e4dc3a907a6dfec8bb3bbf1540d8abbffea22b
54 lines
1.7 KiB
Nix
54 lines
1.7 KiB
Nix
{ rustPlatform, fetchFromGitHub, lib, stdenv }:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "wasmtime";
|
|
version = "8.0.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "bytecodealliance";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
hash = "sha256-xSHwR2MGL49VDKjzAh+xYHbLz3FFg3KYVBjALVgKSQI=";
|
|
fetchSubmodules = true;
|
|
};
|
|
|
|
cargoHash = "sha256-A2JhjRFKPltHubiJYHBXj2H4cdU43Y2x6UjEpRGPX7U=";
|
|
|
|
cargoBuildFlags = [
|
|
"--package wasmtime-cli"
|
|
"--package wasmtime-c-api"
|
|
];
|
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
# We disable tests on x86_64-darwin because Hydra runners do not
|
|
# support SSE3, SSSE3, SSE4.1 and SSE4.2 at this time. This is
|
|
# required by wasmtime. Given this is very specific to Hydra
|
|
# runners, just disable tests on this platform, so we don't get
|
|
# false positives of this package being broken due to failed runs on
|
|
# Hydra (e.g. https://hydra.nixos.org/build/187667794/)
|
|
doCheck = (stdenv.system != "x86_64-darwin");
|
|
cargoTestFlags = [
|
|
"--package wasmtime-runtime"
|
|
];
|
|
|
|
postInstall = ''
|
|
# move libs from out to dev
|
|
install -d -m 0755 $dev/lib
|
|
install -m 0644 ''${!outputLib}/lib/* $dev/lib
|
|
rm -r ''${!outputLib}/lib
|
|
|
|
install -d -m0755 $dev/include/wasmtime
|
|
install -m0644 $src/crates/c-api/include/*.h $dev/include
|
|
install -m0644 $src/crates/c-api/include/wasmtime/*.h $dev/include/wasmtime
|
|
install -m0644 $src/crates/c-api/wasm-c-api/include/* $dev/include
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Standalone JIT-style runtime for WebAssembly, using Cranelift";
|
|
homepage = "https://github.com/bytecodealliance/wasmtime";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ ereslibre matthewbauer ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|