Skip to content

Commit

Permalink
Fix evaluation of binaryTarball.aarch64-linux
Browse files Browse the repository at this point in the history
  • Loading branch information
edolstra committed Feb 20, 2018
1 parent 056d28a commit cea4fb3
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions release.nix
@@ -1,5 +1,5 @@
{ nix ? builtins.fetchGit ./.
, nixpkgs ? fetchTarball channel:nixos-17.09
, nixpkgs ? builtins.fetchGit { url = https://github.com/NixOS/nixpkgs.git; ref = "nix-2.0"; }
, officialRelease ? false
, systems ? [ "x86_64-linux" "i686-linux" "x86_64-darwin" "aarch64-linux" ]
}:
Expand Down Expand Up @@ -127,7 +127,6 @@ let

binaryTarball = pkgs.lib.genAttrs systems (system:

# FIXME: temporarily use a different branch for the Darwin build.
with import nixpkgs { inherit system; };

let
Expand All @@ -137,7 +136,7 @@ let

runCommand "nix-binary-tarball-${version}"
{ exportReferencesGraph = [ "closure1" toplevel "closure2" cacert ];
buildInputs = [ perl shellcheck ];
buildInputs = [ perl ] ++ lib.optional (system != "aarch64-linux") shellcheck;
meta.description = "Distribution-independent Nix bootstrap binaries for ${system}";
}
''
Expand All @@ -150,8 +149,10 @@ let
--subst-var-by nix ${toplevel} \
--subst-var-by cacert ${cacert}
shellcheck -e SC1090 $TMPDIR/install
shellcheck -e SC1091,SC2002 $TMPDIR/install-darwin-multi-user
if type -p shellcheck; then
shellcheck -e SC1090 $TMPDIR/install
shellcheck -e SC1091,SC2002 $TMPDIR/install-darwin-multi-user
fi
chmod +x $TMPDIR/install
chmod +x $TMPDIR/install-darwin-multi-user
Expand Down

0 comments on commit cea4fb3

Please sign in to comment.