2020-01-09 10:59:51 +00:00
|
|
|
{ lib
|
|
|
|
, rustPlatform
|
|
|
|
, fetchFromGitHub
|
|
|
|
, cmake
|
|
|
|
, llvmPackages
|
|
|
|
, pkg-config
|
|
|
|
}:
|
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "wasmer";
|
2021-06-21 13:07:53 +01:00
|
|
|
version = "2.0.0";
|
2020-01-09 10:59:51 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "wasmerio";
|
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
2021-06-21 13:07:53 +01:00
|
|
|
sha256 = "191f60db2y1f3xw1x81mw88vclf1c4kgvnfv74g5vb3vn7n57c5j";
|
2020-01-09 10:59:51 +00:00
|
|
|
fetchSubmodules = true;
|
|
|
|
};
|
|
|
|
|
2021-06-21 13:07:53 +01:00
|
|
|
cargoSha256 = "0hhwixqhrl79hpzmvq7ga3kp2cfrwr4i8364cwnr7195xwnfxb0k";
|
2020-01-09 10:59:51 +00:00
|
|
|
|
|
|
|
nativeBuildInputs = [ cmake pkg-config ];
|
|
|
|
|
2021-04-01 09:14:40 +01:00
|
|
|
cargoBuildFlags = [
|
|
|
|
# cranelift+jit works everywhere, see:
|
|
|
|
# https://github.com/wasmerio/wasmer/blob/master/Makefile#L22
|
|
|
|
"--features" "cranelift,jit"
|
|
|
|
# must target manifest and desired output bin, otherwise output is empty
|
|
|
|
"--manifest-path" "lib/cli/Cargo.toml"
|
|
|
|
"--bin" "wasmer"
|
|
|
|
];
|
|
|
|
|
|
|
|
cargoTestFlags = [
|
2021-06-21 13:07:53 +01:00
|
|
|
"--features" "test-cranelift"
|
|
|
|
# Can't use test-jit :
|
|
|
|
# error: Package `wasmer-workspace v2.0.0 (/build/source)` does not have the feature `test-jit`
|
2021-04-01 09:14:40 +01:00
|
|
|
];
|
2020-09-09 09:16:52 +01:00
|
|
|
|
llvmPackages: Multuple outputs for everythting
Also begin to start work on cross compilation, though that will have to
be finished later.
The patches are based on the first version of
https://reviews.llvm.org/D99484. It's very annoying to do the
back-porting but the review has uncovered nothing super major so I'm
fine sticking with what I've got.
Beyond making the outputs work, I also strove to re-sync the packages,
as they have been drifting pointlessly apart for some time.
----
Other misc notes, highly incomplete
- lvm-config-native and llvm-config are put in `dev` because they are
tools just for build time.
- Clang no longer has an lld dep. That was introduced in
db29857eb391ed002046090851a44c452b80bdbd, but if clang needs help
finding lld when it is used we should just pass it flags / put in the
resource dir. Providing it at build time increases critical path
length for no good reason.
----
A note on `nativeCC`:
`stdenv` takes tools from the previous stage, so:
1. `pkgsBuildBuild`: `(?1, x, x)`
2. `pkgsBuildBuild.stdenv.cc`: `(?0, ?1, x)`
while:
1. `pkgsBuildBuild`: `(?1, x, x)`
2. `pkgsBuildBuild.targetPackages`: `(x, x, ?2)`
3. `pkgsBuildBuild.targetPackages.stdenv.cc`: `(?1, x, x)`
2020-10-15 09:23:57 +01:00
|
|
|
LIBCLANG_PATH = "${llvmPackages.libclang.lib}/lib";
|
2020-01-09 10:59:51 +00:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "The Universal WebAssembly Runtime";
|
|
|
|
longDescription = ''
|
|
|
|
Wasmer is a standalone WebAssembly runtime for running WebAssembly outside
|
|
|
|
of the browser, supporting WASI and Emscripten. Wasmer can be used
|
|
|
|
standalone (via the CLI) and embedded in different languages, running in
|
|
|
|
x86 and ARM devices.
|
|
|
|
'';
|
|
|
|
homepage = "https://wasmer.io/";
|
|
|
|
license = licenses.mit;
|
2021-06-21 13:07:53 +01:00
|
|
|
maintainers = with maintainers; [ Br1ght0ne shamilton ];
|
2020-01-09 10:59:51 +00:00
|
|
|
};
|
|
|
|
}
|