From 4ae6e849015fb269414c1544e815aba75085cf7b Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Fri, 11 Jan 2019 16:30:43 +0100 Subject: [PATCH] install: Use base-16 hashes Issue #2623. --- release.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/release.nix b/release.nix index 415c87da7..271645067 100644 --- a/release.nix +++ b/release.nix @@ -296,7 +296,7 @@ let substitute ${./scripts/install.in} $out/install \ ${pkgs.lib.concatMapStrings - (system: "--replace '@binaryTarball_${system}@' $(nix hash-file --type sha256 ${binaryTarball.${system}}/*.tar.bz2) ") + (system: "--replace '@binaryTarball_${system}@' $(nix hash-file --base16 --type sha256 ${binaryTarball.${system}}/*.tar.bz2) ") [ "x86_64-linux" "i686-linux" "x86_64-darwin" "aarch64-linux" ] } \ --replace '@nixVersion@' ${build.x86_64-linux.src.version}