blob: 9c38cdde049f5e953e89de4a6128cd1a7034110d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
#pragma once
#include <map>
#include <string>
#include "eval.hh"
namespace nix {
Value* findAlongAttrPath(EvalState& state, const string& attrPath,
Bindings& autoArgs, Value& vIn);
}
|