eb11feaa0b
Changes the default fetcher in the Rust Platform to be the newer `fetchCargoTarball`, and changes every application using the current default to instead opt out. This commit does not change any hashes or cause any rebuilds. Once integrated, we will start deleting the opt-outs and recomputing hashes. See #79975 for details.
28 lines
781 B
Nix
28 lines
781 B
Nix
{ stdenv, fetchFromGitHub, rustPlatform }:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "wasm-gc";
|
|
version = "0.1.6";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "alexcrichton";
|
|
repo = "wasm-gc";
|
|
rev = version;
|
|
sha256 = "1lc30xxqp3vv1r269xzznh2lf2dzdq89bi5f1vmqjw4yc3xmawm7";
|
|
};
|
|
|
|
cargoPatches = [ ./fix-build.patch ]; # Cargo.lock is not up-to-date
|
|
|
|
# Delete this on next update; see #79975 for details
|
|
legacyCargoFetcher = true;
|
|
|
|
cargoSha256 = "073dnn80sl4adh7vi6q9sx2vkmy27gxy7ysxz17iz12p7pfcagm2";
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "gc-sections for wasm";
|
|
homepage = "https://github.com/alexcrichton/wasm-gc";
|
|
maintainers = with maintainers; [ ekleog ];
|
|
platforms = platforms.all;
|
|
license = with licenses; [ mit asl20 ];
|
|
};
|
|
}
|