mirror of
https://github.com/NixOS/nix.git
synced 2025-12-23 01:11:07 +01:00
13 lines
202 B
C++
13 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);
|
|
|
|
}
|