]>
Git — Sourcephile - sourcephile-nix.git/blob - .config/nix/2.3.3/install
3 # This script installs the Nix package manager on your system by
4 # downloading a binary distribution and running its installer script
5 # (which in turn creates and populates /nix).
7 { # Prevent execution if this script was only partially downloaded
13 tmpDir
="$(mktemp -d -t nix-binary-tarball-unpack.XXXXXXXXXX || \
14 oops "Can
't create temporary directory for downloading the Nix binary tarball")"
18 trap cleanup EXIT INT QUIT TERM
21 command -v "$1" > /dev/null 2>&1 ||
22 oops "you do not have '$1' installed, which I need to $2"
25 case "$(uname -s).$(uname -m)" in
26 Linux.x86_64) system=x86_64-linux; hash=bb1bc35b55b1b199e391000ad12bb1b9d39114765a6a2f6110e458a046624ed6;;
27 Linux.i?86) system=i686-linux; hash=8ca315121cf8ae23306f46f816fc3e3c7daec7b21009f8673d9c77f690a51071;;
28 Linux.aarch64) system=aarch64-linux; hash=d9fd7cbc1bf64e3311c4309f2d5cde87039c348927df299f8c52d930eeef6eb5;;
29 Darwin.x86_64) system=x86_64-darwin; hash=532e3ad482ba18b556a25041a101ee96fe7ae5718679728ccfbbea34bb169018;;
30 *) oops "sorry, there is no binary distribution of Nix for your platform";;
33 url="https://nixos.org/releases/nix/nix-2.3.3/nix-2.3.3-$system.tar.xz"
35 tarball="$tmpDir/$(basename "$tmpDir/nix-2.3.3-$system.tar.xz")"
37 require_util curl "download the binary tarball"
38 require_util tar "unpack the binary tarball"
40 echo "downloading Nix 2.3.3 binary tarball for $system from '$url' to '$tmpDir'..."
41 curl -L "$url" -o "$tarball" || oops "failed to download '$url'"
43 if command -v sha256sum > /dev/null 2>&1; then
44 hash2="$(sha256sum -b "$tarball" | cut -c1-64)"
45 elif command -v shasum > /dev/null 2>&1; then
46 hash2="$(shasum -a 256 -b "$tarball" | cut -c1-64)"
47 elif command -v openssl > /dev/null 2>&1; then
48 hash2="$(openssl dgst -r -sha256 "$tarball" | cut -c1-64)"
50 oops "cannot verify the SHA-256 hash of '$url'; you need one of 'shasum
', 'sha256sum
', or 'openssl
'"
53 if [ "$hash" != "$hash2" ]; then
54 oops "SHA-256 hash mismatch in '$url'; expected $hash, got $hash2"
59 tar -xf "$tarball" -C "$unpack" || oops "failed to unpack '$url'"
61 script=$(echo "$unpack"/*/install)
63 [ -e "$script" ] || oops "installation script is missing from the binary tarball!"