forked from lix-project/lix
14 lines
202 B
C++
14 lines
202 B
C++
#pragma once
|
|
|
|
#include "eval.hh"
|
|
|
|
#include <string>
|
|
#include <map>
|
|
|
|
namespace nix {
|
|
|
|
void findAlongAttrPath(EvalState & state, const string & attrPath,
|
|
Bindings & autoArgs, Expr * e, Value & v);
|
|
|
|
}
|