forked from lix-project/lix
Include cacert in the binary tarball
This prevents having to fetch Nixpkgs or cacert over http.
This commit is contained in:
parent
e529823635
commit
20cf0127f5
|
@ -122,15 +122,16 @@ let
|
||||||
in
|
in
|
||||||
|
|
||||||
runCommand "nix-binary-tarball-${version}"
|
runCommand "nix-binary-tarball-${version}"
|
||||||
{ exportReferencesGraph = [ "closure" toplevel ];
|
{ exportReferencesGraph = [ "closure1" toplevel "closure2" cacert ];
|
||||||
buildInputs = [ perl ];
|
buildInputs = [ perl ];
|
||||||
meta.description = "Distribution-independent Nix bootstrap binaries for ${system}";
|
meta.description = "Distribution-independent Nix bootstrap binaries for ${system}";
|
||||||
}
|
}
|
||||||
''
|
''
|
||||||
storePaths=$(perl ${pathsFromGraph} ./closure)
|
storePaths=$(perl ${pathsFromGraph} ./closure1 ./closure2)
|
||||||
printRegistration=1 perl ${pathsFromGraph} ./closure > $TMPDIR/reginfo
|
printRegistration=1 perl ${pathsFromGraph} ./closure1 ./closure2 > $TMPDIR/reginfo
|
||||||
substitute ${./scripts/install-nix-from-closure.sh} $TMPDIR/install \
|
substitute ${./scripts/install-nix-from-closure.sh} $TMPDIR/install \
|
||||||
--subst-var-by nix ${toplevel}
|
--subst-var-by nix ${toplevel} \
|
||||||
|
--subst-var-by cacert ${cacert}
|
||||||
chmod +x $TMPDIR/install
|
chmod +x $TMPDIR/install
|
||||||
dir=nix-${version}-${system}
|
dir=nix-${version}-${system}
|
||||||
fn=$out/$dir.tar.bz2
|
fn=$out/$dir.tar.bz2
|
||||||
|
|
|
@ -5,6 +5,7 @@ set -e
|
||||||
dest="/nix"
|
dest="/nix"
|
||||||
self="$(dirname "$0")"
|
self="$(dirname "$0")"
|
||||||
nix="@nix@"
|
nix="@nix@"
|
||||||
|
cacert="@cacert@"
|
||||||
|
|
||||||
if ! [ -e $self/.reginfo ]; then
|
if ! [ -e $self/.reginfo ]; then
|
||||||
echo "$0: incomplete installer (.reginfo is missing)" >&2
|
echo "$0: incomplete installer (.reginfo is missing)" >&2
|
||||||
|
@ -66,7 +67,7 @@ fi
|
||||||
|
|
||||||
. $nix/etc/profile.d/nix.sh
|
. $nix/etc/profile.d/nix.sh
|
||||||
|
|
||||||
if ! $nix/bin/nix-env -i $nix; then
|
if ! $nix/bin/nix-env -i "$nix"; then
|
||||||
echo "$0: unable to install Nix into your default profile" >&2
|
echo "$0: unable to install Nix into your default profile" >&2
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
@ -80,7 +81,9 @@ if [ -z "$_NIX_INSTALLER_TEST" ]; then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Install an SSL certificate bundle.
|
# Install an SSL certificate bundle.
|
||||||
$nix/bin/nix-env -iA nixpkgs.cacert || true
|
if [ -z "$SSL_CERT_FILE" ]; then
|
||||||
|
$nix/bin/nix-env -i "$cacert"
|
||||||
|
fi
|
||||||
|
|
||||||
# Make the shell source nix.sh during login.
|
# Make the shell source nix.sh during login.
|
||||||
p=$NIX_LINK/etc/profile.d/nix.sh
|
p=$NIX_LINK/etc/profile.d/nix.sh
|
||||||
|
|
Loading…
Reference in a new issue