diff options
author | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2016-03-29T09·35+0200 |
---|---|---|
committer | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2016-03-29T09·35+0200 |
commit | 0f754280a4c2a8b57a85567dfeb72baf26123fc7 (patch) | |
tree | 9c8b90ef4bb07a50295a4c96b3c43b4930b08960 /release.nix | |
parent | 3b81b2645706d7f8d9c0ec228426dee8ef1fc7ac (diff) | |
parent | c89783b6a7819c46bc00cb40686afdf37cb5e736 (diff) |
Merge pull request #864 from copumpkin/remove-hack
Kill the temporary darwin-specific channel
Diffstat (limited to 'release.nix')
-rw-r--r-- | release.nix | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/release.nix b/release.nix index 79df103ccfc6..29c6d5a6b70a 100644 --- a/release.nix +++ b/release.nix @@ -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; |