mirror of
https://github.com/NixOS/nix
synced 2025-06-25 06:31:14 +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
|
@ -86,7 +86,7 @@ SV * queryDeriver(char * path)
|
|||
}
|
||||
|
||||
|
||||
SV * queryPathInfo(char * path)
|
||||
SV * queryPathInfo(char * path, int base32)
|
||||
PPCODE:
|
||||
try {
|
||||
doInit();
|
||||
|
@ -95,7 +95,7 @@ SV * queryPathInfo(char * path)
|
|||
XPUSHs(&PL_sv_undef);
|
||||
else
|
||||
XPUSHs(sv_2mortal(newSVpv(info.deriver.c_str(), 0)));
|
||||
string s = "sha256:" + printHash(info.hash);
|
||||
string s = "sha256:" + (base32 ? printHash32(info.hash) : printHash(info.hash));
|
||||
XPUSHs(sv_2mortal(newSVpv(s.c_str(), 0)));
|
||||
mXPUSHi(info.registrationTime);
|
||||
mXPUSHi(info.narSize);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue