diff options
Diffstat (limited to 'third_party/nix/src/libstore/store-api.cc')
-rw-r--r-- | third_party/nix/src/libstore/store-api.cc | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/third_party/nix/src/libstore/store-api.cc b/third_party/nix/src/libstore/store-api.cc index a6863cc04b52..ae403b0be65f 100644 --- a/third_party/nix/src/libstore/store-api.cc +++ b/third_party/nix/src/libstore/store-api.cc @@ -323,9 +323,8 @@ Path Store::makeStorePath(const std::string& type, const Hash& hash, checkStoreName(name); - return storeDir + "/" + - compressHash(hashString(htSHA256, s), 20).to_string(Base32, false) + - "-" + name; + return absl::StrCat(storeDir, "/", hashString(htSHA256, s).ToStorePathHash(), + "-", name); } Path Store::makeOutputPath(const std::string& id, const Hash& hash, |