about summary refs log tree commit diff
path: root/third_party/nix/src/libexpr/attr-path.hh
#pragma once

#include "eval.hh"

#include <string>
#include <map>

namespace nix {

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

}