mirror of
https://github.com/NixOS/nix
synced 2025-07-06 21:41:48 +02:00
nix-push: Always generate base-32 hashes
This commit is contained in:
parent
6ec7460af1
commit
cf49472d60
2 changed files with 4 additions and 4 deletions
|
@ -146,7 +146,7 @@ for (my $n = 0; $n < scalar @storePaths; $n++) {
|
|||
my $baseName = basename $storePath;
|
||||
|
||||
# Get info about the store path.
|
||||
my ($deriver, $narHash, $time, $narSize, $refs) = queryPathInfo($storePath);
|
||||
my ($deriver, $narHash, $time, $narSize, $refs) = queryPathInfo($storePath, 1);
|
||||
|
||||
# In some exceptional cases (such as VM tests that use the Nix
|
||||
# store of the host), the database doesn't contain the hash. So
|
||||
|
@ -155,7 +155,7 @@ for (my $n = 0; $n < scalar @storePaths; $n++) {
|
|||
my $nar = "$tmpDir/nar";
|
||||
system("$Nix::Config::binDir/nix-store --dump $storePath > $nar") == 0
|
||||
or die "cannot dump $storePath\n";
|
||||
$narHash = `$Nix::Config::binDir/nix-hash --type sha256 --flat $nar`;
|
||||
$narHash = `$Nix::Config::binDir/nix-hash --type sha256 --base32 --flat $nar`;
|
||||
die "cannot hash `$nar'" if $? != 0;
|
||||
chomp $narHash;
|
||||
$narHash = "sha256:$narHash";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue