wavm: init at 2022-05-14

This commit is contained in:
Rafael Fernández López 2023-03-29 19:41:26 +02:00
parent 27ccf0e793
commit d34f3e8f31
2 changed files with 28 additions and 0 deletions

View File

@ -0,0 +1,26 @@
{ lib
, llvmPackages
, fetchFromGitHub
, cmake
}:
llvmPackages.stdenv.mkDerivation rec {
pname = "wavm";
version = "2022-05-14";
src = fetchFromGitHub {
owner = "WAVM";
repo = "WAVM";
rev = "nightly/${version}";
hash = "sha256-SHz+oOOkwvVZucJYFSyZc3MnOAy1VatspmZmOAXYAWA=";
};
nativeBuildInputs = [ cmake llvmPackages.llvm ];
meta = with lib; {
description = "WebAssembly Virtual Machine";
homepage = "https://wavm.github.io";
license = licenses.bsd3;
maintainers = with maintainers; [ ereslibre ];
};
}

View File

@ -39567,6 +39567,8 @@ with pkgs;
inherit (darwin.apple_sdk.frameworks) CoreFoundation SystemConfiguration Security;
};
wavm = callPackage ../development/interpreters/wavm { };
yabasic = callPackage ../development/interpreters/yabasic { };
wasm-pack = callPackage ../development/tools/wasm-pack {