aboutsummaryrefslogtreecommitdiff
path: root/src/nix-hash/nix-hash.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/nix-hash/nix-hash.cc')
-rw-r--r--src/nix-hash/nix-hash.cc3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/nix-hash/nix-hash.cc b/src/nix-hash/nix-hash.cc
index 78c6f4401..4a7c94396 100644
--- a/src/nix-hash/nix-hash.cc
+++ b/src/nix-hash/nix-hash.cc
@@ -16,12 +16,14 @@ void run(Strings args)
HashType ht = htMD5;
bool flat = false;
bool base32 = false;
+ bool truncate = false;
for (Strings::iterator i = args.begin();
i != args.end(); i++)
{
if (*i == "--flat") flat = true;
else if (*i == "--base32") base32 = true;
+ else if (*i == "--truncate") truncate = true;
else if (*i == "--type") {
++i;
if (i == args.end()) throw UsageError("`--type' requires an argument");
@@ -31,6 +33,7 @@ void run(Strings args)
}
else {
Hash h = flat ? hashFile(ht, *i) : hashPath(ht, *i);
+ if (truncate && h.hashSize > 20) h = compressHash(h, 20);
cout << format("%1%\n") %
(base32 ? printHash32(h) : printHash(h));
}