diff options
Diffstat (limited to 'src/libstore/derivations.cc')
-rw-r--r-- | src/libstore/derivations.cc | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/libstore/derivations.cc b/src/libstore/derivations.cc index 2a1fbe0f6..b19ee5ed1 100644 --- a/src/libstore/derivations.cc +++ b/src/libstore/derivations.cc @@ -35,10 +35,9 @@ std::optional<StorePath> DerivationOutput::path(const Store & store, std::string StorePath DerivationOutput::CAFixed::path(const Store & store, std::string_view drvName, std::string_view outputName) const { - return store.makeFixedOutputPathFromCA(StorePathDescriptor { - .name = outputPathName(drvName, outputName), - .info = ca, - }); + return store.makeFixedOutputPathFromCA( + outputPathName(drvName, outputName), + ca); } |