diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2020-04-07 11:20:24 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-07 11:20:24 +0200 |
commit | f32a9b354dd96c263c87e7d470206ee43c2efd67 (patch) | |
tree | e3526dd4f3a4cb0e66cbd5a307d6fe02a76fad8e /src/libstore/derivations.cc | |
parent | ebb20a5356af023498506324bd0f88a99175e295 (diff) | |
parent | cd39709003eee4b85a31799b8bc2de59721930ce (diff) |
Merge pull request #3459 from NixOS/fetchers
Backport libfetchers from the flakes branch
Diffstat (limited to 'src/libstore/derivations.cc')
-rw-r--r-- | src/libstore/derivations.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstore/derivations.cc b/src/libstore/derivations.cc index 973ddc86a..0067032af 100644 --- a/src/libstore/derivations.cc +++ b/src/libstore/derivations.cc @@ -378,7 +378,7 @@ Hash hashDerivationModulo(Store & store, const Derivation & drv, bool maskOutput if (h == drvHashes.end()) { assert(store.isValidPath(i.first)); h = drvHashes.insert_or_assign(i.first.clone(), hashDerivationModulo(store, - readDerivation(store, store.toRealPath(store.printStorePath(i.first))), false)).first; + readDerivation(store, store.toRealPath(i.first)), false)).first; } inputs2.insert_or_assign(h->second.to_string(Base16, false), i.second); } |