Skip to content

Commit 8557702

Browse files
committed
[DDW-1127] Fix release.nix eval errors & add the new GC roots
1 parent 85b3fbb commit 8557702

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

release.nix

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@ let
1010
shellEnvs = {
1111
linux = import ./shell.nix { system = "x86_64-linux"; autoStartBackend = true; };
1212
darwin = import ./shell.nix { system = "x86_64-darwin"; autoStartBackend = true; };
13-
darwin-arm = import ./shell.nix { system = "aarch64-darwin"; autoStartBackend = true; };
13+
# TODO: re-enable when we have `aarch64-darwin` in Hydra
14+
#darwin-arm = import ./shell.nix { system = "aarch64-darwin"; autoStartBackend = true; };
1415
};
1516
suffix = if buildNum == null then "" else "-${toString buildNum}";
1617
version = (builtins.fromJSON (builtins.readFile ./package.json)).version;
@@ -20,7 +21,8 @@ let
2021
x86_64-linux = import ./. { target = "x86_64-linux"; };
2122
x86_64-windows = import ./. { target = "x86_64-windows"; };
2223
x86_64-darwin = import ./. { target = "x86_64-darwin"; };
23-
aarch64-darwin = import ./. { target = "aarch64-darwin"; };
24+
# TODO: re-enable when we have `aarch64-darwin` in Hydra
25+
#aarch64-darwin = import ./. { target = "aarch64-darwin"; };
2426
};
2527
in
2628
table.${system};
@@ -52,6 +54,7 @@ let
5254
sources = import ./nix/sources.nix;
5355
in {
5456
inherit shellEnvs;
57+
gcRoot = builtins.mapAttrs (_: v: v.gcRoot) shellEnvs;
5558
inherit ((daedalusPkgs {}).pkgs) mono;
5659
wine = (daedalusPkgs {}).wine;
5760
wine64 = (daedalusPkgs {}).wine64;

0 commit comments

Comments
 (0)