From df619acdd4743c85626019c8ab961501fb1e7a7b Mon Sep 17 00:00:00 2001 From: sh <37271604+shumvgolove@users.noreply.github.com> Date: Mon, 5 Dec 2022 21:45:18 +0300 Subject: [PATCH] build-android: update nix install (#1506) --- scripts/android/build-android.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/android/build-android.sh b/scripts/android/build-android.sh index 8db48eb551..3e01ab66fc 100755 --- a/scripts/android/build-android.sh +++ b/scripts/android/build-android.sh @@ -13,9 +13,9 @@ nix_install() { [ ! -d /nix ] && sudo sh -c "mkdir -p /nix && chown -R $u /nix" # Install nix - nix_ver="nix-2.10.3" + nix_ver="nix-2.11.1" nix_url="https://releases.nixos.org/nix/$nix_ver/install" - nix_hash="2e96a9c4abb5648a805480e8679de3d9fecff30453603f11c26bb4e7176c7ebe" + nix_hash="4569a01dc5f62056f29f3195673bc3242fc70bf2474927fb5d8549c4d997402d" curl -sSf "$nix_url" -o "$tmp/nix-install" printf "%s %s" "$nix_hash" "$tmp/nix-install" | sha256sum -c