2019-10-18 08:58:25 +01:00
|
|
|
{ rustPlatform, fetchFromGitHub, lib, python, cmake, llvmPackages, clang, stdenv, darwin }:
|
2019-04-16 03:22:16 +01:00
|
|
|
|
2020-01-07 16:36:29 +00:00
|
|
|
rustPlatform.buildRustPackage rec {
|
2019-06-09 10:48:14 +01:00
|
|
|
pname = "wasmtime";
|
2020-07-22 00:50:56 +01:00
|
|
|
version = "0.19.0";
|
2019-04-16 03:22:16 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2019-11-25 11:04:40 +00:00
|
|
|
owner = "bytecodealliance";
|
2020-01-07 16:36:29 +00:00
|
|
|
repo = "${pname}";
|
2020-04-14 18:49:12 +01:00
|
|
|
rev = "v${version}";
|
2020-07-22 00:50:56 +01:00
|
|
|
sha256 = "0gb8xk27ych553b7knflbbks9q64m39v40sdirycm6prqfnfrnm8";
|
2019-04-16 03:22:16 +01:00
|
|
|
fetchSubmodules = true;
|
|
|
|
};
|
|
|
|
|
2020-07-22 00:50:56 +01:00
|
|
|
cargoSha256 = "1dqaxpwfm234yjwrhglzvsqhh2fr5nsx7bpk7bmycyk6lml8vxy7";
|
2019-04-16 03:22:16 +01:00
|
|
|
|
|
|
|
nativeBuildInputs = [ python cmake clang ];
|
2019-10-18 08:58:25 +01:00
|
|
|
buildInputs = [ llvmPackages.libclang ] ++
|
|
|
|
lib.optionals stdenv.isDarwin [ darwin.apple_sdk.frameworks.Security ];
|
2019-04-16 03:22:16 +01:00
|
|
|
LIBCLANG_PATH = "${llvmPackages.libclang}/lib";
|
|
|
|
|
2020-05-16 03:56:26 +01:00
|
|
|
doCheck = true;
|
2020-02-29 11:58:22 +00:00
|
|
|
|
2019-04-16 03:22:16 +01:00
|
|
|
meta = with lib; {
|
2020-01-07 16:36:29 +00:00
|
|
|
description = "Standalone JIT-style runtime for WebAssembly, using Cranelift";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/CraneStation/wasmtime";
|
2019-04-16 03:22:16 +01:00
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = [ maintainers.matthewbauer ];
|
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|