3
0
Fork 0
forked from mirrors/nixpkgs

wasmi: init at 0.30.0

This commit is contained in:
Mostly Void 2023-06-23 23:01:05 +05:30
parent 5eb2425c0e
commit 2158b8eda1
No known key found for this signature in database
GPG key ID: E2B7342D0CAA82C2
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

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