diff options
author | Robert Hensing <roberth@users.noreply.github.com> | 2023-01-13 16:03:12 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-13 16:03:12 +0100 |
commit | d21f54958ebc3400ca41e0458338e6a90bd47fbe (patch) | |
tree | a4ea90b2cc1be9209e0707e1179e1a8064b1ab74 /src/libstore/derivations.cc | |
parent | bdeb6de889219cb9d1ba94b4adc75b0d8000e1b2 (diff) | |
parent | d8512653d480acf69aae820f8b9d4b674dd6fc2f (diff) |
Merge pull request #6815 from obsidiansystems/better-wanted-outputs
`OutputSpec` for `DerivationGoal` and `DerivedPath`, today's `OutputSpec` -> `ExtendedOutputSpec`
Diffstat (limited to 'src/libstore/derivations.cc')
-rw-r--r-- | src/libstore/derivations.cc | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/libstore/derivations.cc b/src/libstore/derivations.cc index 42a53912e..cf18724ef 100644 --- a/src/libstore/derivations.cc +++ b/src/libstore/derivations.cc @@ -688,12 +688,6 @@ std::map<std::string, Hash> staticOutputHashes(Store & store, const Derivation & } -bool wantOutput(const std::string & output, const std::set<std::string> & wanted) -{ - return wanted.empty() || wanted.find(output) != wanted.end(); -} - - static DerivationOutput readDerivationOutput(Source & in, const Store & store) { const auto pathS = readString(in); |