mirror of
https://github.com/NixOS/nix.git
synced 2025-11-09 12:06:01 +01:00
14 lines
219 B
C++
14 lines
219 B
C++
#pragma once
|
|
|
|
#include "nixexpr.hh"
|
|
#include "eval.hh"
|
|
|
|
#include <string>
|
|
#include <map>
|
|
|
|
namespace nix {
|
|
|
|
void printValueAsJSON(EvalState & state, bool strict,
|
|
Value & v, std::ostream & out, PathSet & context);
|
|
|
|
}
|