about summary refs log tree commit diff
path: root/scripts/install.in
diff options
context:
space:
mode:
authorEelco Dolstra <edolstra@gmail.com>2018-05-30T15·40+0200
committerEelco Dolstra <edolstra@gmail.com>2018-05-30T15·40+0200
commit7c3c635d4fa27a36fcba239b7cb980bab06ce482 (patch)
tree93834e2f72b244164cb474feb30fa5edb8970900 /scripts/install.in
parent4caaa4c5fe889be65932183e11556ee4d1fcfcac (diff)
release.nix: Generate the installer script
Diffstat (limited to 'scripts/install.in')
-rw-r--r--scripts/install.in14
1 files changed, 7 insertions, 7 deletions
diff --git a/scripts/install.in b/scripts/install.in
index 32cd249422..26ab85ba09 100644
--- a/scripts/install.in
+++ b/scripts/install.in
@@ -23,22 +23,22 @@ require_util() {
 }
 
 case "$(uname -s).$(uname -m)" in
-    Linux.x86_64) system=x86_64-linux; hash=[%nix_hash_x86_64_linux%];;
-    Linux.i?86) system=i686-linux; hash=[%nix_hash_i686_linux%];;
-    Linux.aarch64) system=aarch64-linux; hash=[%nix_hash_aarch64_linux%];;
-    Darwin.x86_64) system=x86_64-darwin; hash=[%nix_hash_x86_64_darwin%];;
+    Linux.x86_64) system=x86_64-linux; hash=@binaryTarball_x86_64-linux@;;
+    Linux.i?86) system=i686-linux; hash=@binaryTarball_i686-linux@;;
+    Linux.aarch64) system=aarch64-linux; hash=@binaryTarball_aarch64-linux@;;
+    Darwin.x86_64) system=x86_64-darwin; hash=@binaryTarball_x86_64-darwin@;;
     *) oops "sorry, there is no binary distribution of Nix for your platform";;
 esac
 
-url="https://nixos.org/releases/nix/nix-[%latestNixVersion%]/nix-[%latestNixVersion%]-$system.tar.bz2"
+url="https://nixos.org/releases/nix/nix-@nixVersion@/nix-@nixVersion@-$system.tar.bz2"
 
-tarball="$tmpDir/$(basename "$tmpDir/nix-[%latestNixVersion%]-$system.tar.bz2")"
+tarball="$tmpDir/$(basename "$tmpDir/nix-@nixVersion@-$system.tar.bz2")"
 
 require_util curl "download the binary tarball"
 require_util bzcat "decompress the binary tarball"
 require_util tar "unpack the binary tarball"
 
-echo "downloading Nix [%latestNixVersion%] binary tarball for $system from '$url' to '$tmpDir'..."
+echo "downloading Nix @nixVersion@ binary tarball for $system from '$url' to '$tmpDir'..."
 curl -L "$url" -o "$tarball" || oops "failed to download '$url'"
 
 if type sha256sum > /dev/null 2>&1; then