mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-11 00:36:20 +02:00
15 lines
219 B
C++
15 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);
|
||
|
|
||
|
}
|