mirror of
https://github.com/NixOS/nix
synced 2025-06-27 00:11:17 +02:00
libexpr: add findDerivationFilename
extract the derivation to filename:lineno heuristic
This commit is contained in:
parent
207a537343
commit
59c7249769
4 changed files with 36 additions and 43 deletions
|
@ -4,10 +4,15 @@
|
|||
|
||||
#include <string>
|
||||
#include <map>
|
||||
#include <tuple>
|
||||
|
||||
namespace nix {
|
||||
|
||||
Value * findAlongAttrPath(EvalState & state, const string & attrPath,
|
||||
Bindings & autoArgs, Value & vIn);
|
||||
|
||||
/* Heuristic to find the filename and lineno or a derivation. */
|
||||
std::tuple<std::string, int> findDerivationFilename(EvalState & state,
|
||||
Value & v, std::string what);
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue