wasm-tools: 1.0.39 -> 1.0.40

Also, remove the Cargo.lock file that was committed back to the main
repository since bd03062ce0ca64fa5be96a27e5ac0d861916d490.
This commit is contained in:
Rafael Fernández López 2023-08-25 22:55:41 +02:00
parent 94d494b2f6
commit 68f6e879e2
2 changed files with 3 additions and 2482 deletions

File diff suppressed because it is too large Load Diff

View File

@ -5,23 +5,18 @@
rustPlatform.buildRustPackage rec {
pname = "wasm-tools";
version = "1.0.39";
version = "1.0.40";
src = fetchFromGitHub {
owner = "bytecodealliance";
repo = pname;
rev = "${pname}-${version}";
hash = "sha256-NohA/2yzsEtMECvnntPyWvhEdVL63elmw0B+4Med6OE=";
hash = "sha256-ZDQPIEDroi+YgEtQ9IsVvFSErfeyDf4KFuybEbGu91E=";
fetchSubmodules = true;
};
cargoLock.lockFile = ./Cargo.lock;
postPatch = ''
ln -sf ${./Cargo.lock} Cargo.lock
'';
cargoHash = "sha256-Nynn7pxQyqfMAMGmp3eZFg7y5nj7UPyK6FLbVbN07AA=";
cargoBuildFlags = [ "--package" "wasm-tools" ];
cargoTestFlags = [ "--all" ];
meta = with lib; {