blob: a71ceb9a06cd39c40e03fb2e6950fc739283869a (
plain) (
tree)
|
|
#pragma once
#include <map>
#include <string>
#include "libexpr/eval.hh"
namespace nix {
Value* findAlongAttrPath(EvalState& state, const std::string& attrPath,
Bindings& autoArgs, Value& vIn);
}
|