mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 09:53:10 +00:00
35 lines
1.0 KiB
Nix
35 lines
1.0 KiB
Nix
{ rustPlatform, fetchFromGitHub, lib }:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "wasmtime";
|
|
version = "0.38.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "bytecodealliance";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-q+6w22MbI3HRpmkybZXXWbkK7jbd6lyxodC3EpSovRI=";
|
|
fetchSubmodules = true;
|
|
};
|
|
|
|
cargoSha256 = "sha256-uuhGb0/RDz1/3O8WYiyGIUQFh0WZWJgujqtvH+hgbdA=";
|
|
|
|
doCheck = true;
|
|
checkFlags = [
|
|
"--skip=cli_tests::run_cwasm"
|
|
"--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;
|
|
};
|
|
}
|