Merge pull request #239420 from dit7ya/wasmi

wasmi: init at 0.30.0
This commit is contained in:
Emily 2023-06-24 09:39:38 +02:00 committed by GitHub
commit 787509535b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 1527 additions and 0 deletions

1491
pkgs/development/tools/wasmi/Cargo.lock generated Normal file

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,34 @@
{ lib
, rustPlatform
, fetchFromGitHub
}:
rustPlatform.buildRustPackage rec {
pname = "wasmi";
version = "0.30.0";
src = fetchFromGitHub {
owner = "paritytech";
repo = "wasmi";
rev = "v${version}";
hash = "sha256-0G/K61JP4SehhP+wD9uwCU1GRjzJdz4fkePv+IiqUY4=";
fetchSubmodules = true;
};
cargoLock = {
lockFile = ./Cargo.lock;
};
postPatch = ''
ln -s ${./Cargo.lock} Cargo.lock
'';
meta = with lib; {
description = "An efficient WebAssembly interpreter";
homepage = "https://github.com/paritytech/wasmi";
changelog = "https://github.com/paritytech/wasmi/blob/${src.rev}/CHANGELOG.md";
license = with licenses; [ asl20 mit ];
mainProgram = "wasmi_cli";
maintainers = with maintainers; [ dit7ya ];
};
}

View File

@ -13827,6 +13827,8 @@ with pkgs;
inherit (darwin.apple_sdk_11_0.frameworks) Foundation;
};
wasmi = callPackage ../development/tools/wasmi { };
welkin = callPackage ../tools/graphics/welkin { };
wemux = callPackage ../tools/misc/wemux { };