summary refs log tree commit diff
path: root/pkgs/development/interpreters/wasm-gc/default.nix
blob: 44ac11be540053eafb6147931341694c57ca0597 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ 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 ];
  };
}