Temporarily do Darwin builds from a different Nixpkgs branch

This commit is contained in:
Eelco Dolstra 2016-01-08 10:48:48 +01:00
parent 10a6aa3ad4
commit 4202b17666

View file

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