mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
wasm3: init at 0.5.0
This commit is contained in:
parent
14afd6e5f9
commit
b23217f3b2
2 changed files with 35 additions and 0 deletions
33
pkgs/development/interpreters/wasm3/default.nix
Normal file
33
pkgs/development/interpreters/wasm3/default.nix
Normal file
|
@ -0,0 +1,33 @@
|
|||
{ lib, stdenv, cmake, fetchFromGitHub }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "wasm3";
|
||||
version = "0.5.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "wasm3";
|
||||
repo = "wasm3";
|
||||
rev = "v${version}";
|
||||
sha256 = "07zzmk776j8ydyxhrnnjiscbhhmz182a62r6aix6kfk5kq2cwia2";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ cmake ];
|
||||
|
||||
cmakeFlags = [
|
||||
"-DBUILD_WASI=simple"
|
||||
];
|
||||
|
||||
installPhase = ''
|
||||
runHook preInstal
|
||||
install -Dm755 wasm3 -t $out/bin
|
||||
runHook postInstall
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/wasm3/wasm3";
|
||||
description = "The fastest WebAssembly interpreter, and the most universal runtime.";
|
||||
platforms = platforms.all;
|
||||
maintainers = with maintainers; [ malbarbo ];
|
||||
license = licenses.mit;
|
||||
};
|
||||
}
|
|
@ -12658,6 +12658,8 @@ in
|
|||
|
||||
wasm = ocamlPackages.wasm;
|
||||
|
||||
wasm3 = callPackage ../development/interpreters/wasm3 { };
|
||||
|
||||
proglodyte-wasm = callPackage ../development/interpreters/proglodyte-wasm { };
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue