diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2022-05-30 11:32:37 +0200 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2022-05-30 11:34:47 +0200 |
commit | 8e8e9d8705a68e1be63d6d8059c6c07127826525 (patch) | |
tree | a55dcac2c7ce445798c239f024cda7a3429e624e /src/libexpr/eval.cc | |
parent | ec07a70979a86cc436de7e46e03789b4606d25ab (diff) |
Respect the outputSpecified attribute
E.g. 'nix build nixpkgs#libxml2.dev' will build the 'dev' output.
Diffstat (limited to 'src/libexpr/eval.cc')
-rw-r--r-- | src/libexpr/eval.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libexpr/eval.cc b/src/libexpr/eval.cc index 18baf1cb7..40462afdf 100644 --- a/src/libexpr/eval.cc +++ b/src/libexpr/eval.cc @@ -459,6 +459,7 @@ EvalState::EvalState( , sKey(symbols.create("key")) , sPath(symbols.create("path")) , sPrefix(symbols.create("prefix")) + , sOutputSpecified(symbols.create("outputSpecified")) , repair(NoRepair) , emptyBindings(0) , store(store) |