about summary refs log tree commit diff
path: root/third_party/nix/src/libexpr/attr-path.hh
blob: 6b22df6224861045701c96ce2080c4d044f9e6aa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#pragma once

#include <map>
#include <string>

#include "eval.hh"

namespace nix {

Value* findAlongAttrPath(EvalState& state, const string& attrPath,
                         Bindings& autoArgs, Value& vIn);

}