Kill the temporary darwin-specific channel

The issues have been resolved upstream in the main nixpkgs channel now
This commit is contained in:
Dan Peebles 2016-03-28 20:06:46 -04:00
parent 3b81b26457
commit c89783b6a7
1 changed files with 2 additions and 3 deletions

View File

@ -77,8 +77,7 @@ let
build = pkgs.lib.genAttrs systems (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; };
with import <nixpkgs> { inherit system; };
releaseTools.nixBuild {
name = "nix";
@ -113,7 +112,7 @@ let
binaryTarball = pkgs.lib.genAttrs systems (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; };
with import <nixpkgs> { inherit system; };
let
toplevel = builtins.getAttr system jobs.build;