2012-07-18 20:59:03 +02:00
|
|
|
#pragma once
|
2006-07-26 17:05:15 +02:00
|
|
|
|
|
|
|
#include <map>
|
|
|
|
#include <string>
|
2020-05-19 16:54:39 +02:00
|
|
|
|
2020-05-27 22:56:34 +02:00
|
|
|
#include "libexpr/eval.hh"
|
2006-07-26 17:05:15 +02:00
|
|
|
|
2006-09-04 23:06:23 +02:00
|
|
|
namespace nix {
|
|
|
|
|
2020-05-21 06:43:22 +02:00
|
|
|
Value* findAlongAttrPath(EvalState& state, const std::string& attrPath,
|
2020-08-14 01:40:27 +02:00
|
|
|
Bindings* autoArgs, Value& vIn);
|
2006-07-26 17:05:15 +02:00
|
|
|
|
2006-09-04 23:06:23 +02:00
|
|
|
}
|