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

#include "eval.hh"

#include <string>
#include <map>

namespace nix {

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

}