diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2017-11-24T17·07+0100 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2017-11-24T17·08+0100 |
commit | 90948a4e3a64492b7d117d93657221fa7b598e6e (patch) | |
tree | d339dad0dd12db1132d3484a6cad199c13a78b82 /src/libexpr/get-drvs.hh | |
parent | 0fc3e581e0585e377d4b42e343b0487606add547 (diff) |
nix-shell/nix-build: Support .drv files again
Fixes #1663. Also handle '!<output-name>' (#1694).
Diffstat (limited to 'src/libexpr/get-drvs.hh')
-rw-r--r-- | src/libexpr/get-drvs.hh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libexpr/get-drvs.hh b/src/libexpr/get-drvs.hh index 32294e458751..4d9128e3f448 100644 --- a/src/libexpr/get-drvs.hh +++ b/src/libexpr/get-drvs.hh @@ -37,6 +37,7 @@ public: DrvInfo(EvalState & state) : state(&state) { }; DrvInfo(EvalState & state, const string & attrPath, Bindings * attrs); + DrvInfo(EvalState & state, ref<Store> store, const std::string & drvPathWithOutputs); string queryName() const; string querySystem() const; |