Temporarily do Darwin builds from a different Nixpkgs branch
This commit is contained in:
parent
10a6aa3ad4
commit
4202b17666
1 changed files with 4 additions and 2 deletions
|
@ -76,7 +76,8 @@ let
|
||||||
|
|
||||||
build = pkgs.lib.genAttrs systems (system:
|
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 {
|
releaseTools.nixBuild {
|
||||||
name = "nix";
|
name = "nix";
|
||||||
|
@ -110,7 +111,8 @@ let
|
||||||
|
|
||||||
binaryTarball = pkgs.lib.genAttrs systems (system:
|
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
|
let
|
||||||
toplevel = builtins.getAttr system jobs.build;
|
toplevel = builtins.getAttr system jobs.build;
|
||||||
|
|
Loading…
Reference in a new issue