File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change 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 ;
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 } ;
5254 sources = import ./nix/sources.nix ;
5355in {
5456 inherit shellEnvs ;
57+ gcRoot = builtins . mapAttrs ( _ : v : v . gcRoot ) shellEnvs ;
5558 inherit ( ( daedalusPkgs { } ) . pkgs ) mono ;
5659 wine = ( daedalusPkgs { } ) . wine ;
5760 wine64 = ( daedalusPkgs { } ) . wine64 ;
You can’t perform that action at this time.
0 commit comments