2c76a4cb41
GitOrigin-RevId: c757e9bd77b16ca2e03c89bf8bc9ecb28e0c06ad
30 lines
853 B
Nix
30 lines
853 B
Nix
{ lib
|
|
, rustPlatform
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "wasm-tools";
|
|
version = "1.0.51";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "bytecodealliance";
|
|
repo = pname;
|
|
rev = "${pname}-${version}";
|
|
hash = "sha256-SeUwd9S2WMGbNqj9NzZZKW1tQWc0cbe+uZmHc1PWKR8=";
|
|
fetchSubmodules = true;
|
|
};
|
|
|
|
# Disable cargo-auditable until https://github.com/rust-secure-code/cargo-auditable/issues/124 is solved.
|
|
auditable = false;
|
|
cargoHash = "sha256-G7pIy8KuDEEVVhH0WzY93eDhH2oTT9sP5CqTgfxYB0c=";
|
|
cargoBuildFlags = [ "--package" "wasm-tools" ];
|
|
cargoTestFlags = [ "--all" ];
|
|
|
|
meta = with lib; {
|
|
description = "Low level tooling for WebAssembly in Rust";
|
|
homepage = "https://github.com/bytecodealliance/wasm-tools";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ ereslibre ];
|
|
};
|
|
}
|