Progress towards REUSE compliance. Change-Id: Ia64efc4fbf4e8eb3800b75159f357ea009438ae1 Signed-off-by: Raito Bezarius <raito@lix.systems>
19 lines
367 B
C++
19 lines
367 B
C++
// SPDX-FileCopyrightText: 2024 Nix and Lix Authors
|
|
//
|
|
// SPDX-License-Identifier: LGPL-2.1-only
|
|
|
|
#pragma once
|
|
///@file
|
|
|
|
#include "nixexpr.hh"
|
|
#include "eval.hh"
|
|
|
|
#include <string>
|
|
#include <map>
|
|
|
|
namespace nix {
|
|
|
|
void printValueAsXML(EvalState & state, bool strict, bool location,
|
|
Value & v, std::ostream & out, NixStringContext & context, const PosIdx pos);
|
|
|
|
}
|