2020-01-09 10:59:51 +00:00
|
|
|
{ lib
|
|
|
|
, rustPlatform
|
|
|
|
, fetchFromGitHub
|
|
|
|
, cmake
|
|
|
|
, llvmPackages
|
|
|
|
, pkg-config
|
|
|
|
}:
|
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "wasmer";
|
2021-12-05 17:47:17 +00:00
|
|
|
version = "2.1.0";
|
2020-01-09 10:59:51 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "wasmerio";
|
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
2021-12-05 17:47:17 +00:00
|
|
|
sha256 = "sha256-8aNJDu3MuXWcPp/nW1ly9+82YSfiMWc75Q4nQD6eUaA=";
|
2020-01-09 10:59:51 +00:00
|
|
|
fetchSubmodules = true;
|
|
|
|
};
|
|
|
|
|
2021-12-05 17:47:17 +00:00
|
|
|
cargoSha256 = "sha256-l/Se0ijSX5zkAoedorsJvj5EhCuwgI4jE+S8lHZh6+4=";
|
2020-01-09 10:59:51 +00:00
|
|
|
|
|
|
|
nativeBuildInputs = [ cmake pkg-config ];
|
|
|
|
|
2021-11-16 00:36:07 +00:00
|
|
|
# cranelift+jit works everywhere, see:
|
|
|
|
# https://github.com/wasmerio/wasmer/blob/master/Makefile#L22
|
|
|
|
buildFeatures = [ "cranelift" "jit" ];
|
2021-04-01 09:14:40 +01:00
|
|
|
cargoBuildFlags = [
|
|
|
|
# must target manifest and desired output bin, otherwise output is empty
|
|
|
|
"--manifest-path" "lib/cli/Cargo.toml"
|
|
|
|
"--bin" "wasmer"
|
|
|
|
];
|
|
|
|
|
2021-11-16 00:36:07 +00:00
|
|
|
# Can't use test-jit:
|
2021-12-05 17:47:17 +00:00
|
|
|
# error: Package `wasmer-workspace v2.1.0 (/build/source)` does not have the feature `test-jit`
|
2021-11-16 00:36:07 +00:00
|
|
|
checkFeatures = [ "test-cranelift" ];
|
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
|
|
|
};
|
|
|
|
}
|