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