02cf88bb76
GitOrigin-RevId: c4a0efdd5a728e20791b8d8d2f26f90ac228ee8d
35 lines
1.1 KiB
Nix
35 lines
1.1 KiB
Nix
{ rustPlatform, fetchFromGitHub, lib }:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "wasmtime";
|
|
version = "0.39.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "bytecodealliance";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-cU03wm1+V++mV7j7VyMtjAYrPldzTysNzpJ8m0q4Rx8=";
|
|
fetchSubmodules = true;
|
|
};
|
|
|
|
cargoSha256 = "sha256-DnThste0SbBdpGAUYhmwbdQFNEB3LozyDf0X8r2A90Q=";
|
|
|
|
doCheck = true;
|
|
checkFlags = [
|
|
"--skip=cli_tests::run_cwasm"
|
|
"--skip=commands::compile::test::test_unsupported_flags_compile"
|
|
"--skip=commands::compile::test::test_aarch64_flags_compile"
|
|
"--skip=commands::compile::test::test_successful_compile"
|
|
"--skip=commands::compile::test::test_x64_flags_compile"
|
|
"--skip=commands::compile::test::test_x64_presets_compile"
|
|
"--skip=traps::parse_dwarf_info"
|
|
];
|
|
|
|
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;
|
|
};
|
|
}
|