diff --git a/release.nix b/release.nix index a6a745e27..293afcc24 100644 --- a/release.nix +++ b/release.nix @@ -76,7 +76,8 @@ let build = pkgs.lib.genAttrs systems (system: - with import { inherit system; }; + # FIXME: temporarily use a different branch for the Darwin build. + with import (if system == "x86_64-darwin" then else ) { inherit system; }; releaseTools.nixBuild { name = "nix"; @@ -110,7 +111,8 @@ let binaryTarball = pkgs.lib.genAttrs systems (system: - with import { inherit system; }; + # FIXME: temporarily use a different branch for the Darwin build. + with import (if system == "x86_64-darwin" then else ) { inherit system; }; let toplevel = builtins.getAttr system jobs.build;