26 lines
696 B
Nix
26 lines
696 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
|
|
|
|
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 ];
|
|
};
|
|
}
|