aboutsummaryrefslogtreecommitdiff
path: root/src/libexpr/json-to-value.hh
blob: 3b0fdae115ea477ec15f814674d2149ce651f911 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#pragma once

#include "eval.hh"

#include <string>

namespace nix {

MakeError(JSONParseError, EvalError);

void parseJSON(EvalState & state, const string & s, Value & v);

}