183 lines
4.5 KiB
Nix
183 lines
4.5 KiB
Nix
{
|
|
lib,
|
|
pkgs,
|
|
}:
|
|
let
|
|
inherit (pkgs) buildPackages callPackage;
|
|
|
|
hocon-generator = buildPackages.rustPlatform.buildRustPackage {
|
|
name = "hocon-generator";
|
|
version = "0.1.0";
|
|
src = ./src;
|
|
|
|
passthru.updateScript = ./update.sh;
|
|
|
|
cargoLock.lockFile = ./src/Cargo.lock;
|
|
};
|
|
|
|
hocon-validator =
|
|
pkgs.writers.writePython3Bin "hocon-validator"
|
|
{
|
|
libraries = [ pkgs.python3Packages.pyhocon ];
|
|
}
|
|
''
|
|
from sys import argv
|
|
from pyhocon import ConfigFactory
|
|
|
|
if not len(argv) == 2:
|
|
print("USAGE: hocon-validator <file>")
|
|
|
|
ConfigFactory.parse_file(argv[1])
|
|
'';
|
|
in
|
|
{
|
|
format =
|
|
{
|
|
generator ? hocon-generator,
|
|
validator ? hocon-validator,
|
|
doCheck ? true,
|
|
}:
|
|
let
|
|
hoconLib = {
|
|
mkInclude =
|
|
value:
|
|
let
|
|
includeStatement =
|
|
if lib.isAttrs value && !(lib.isDerivation value) then
|
|
{
|
|
required = false;
|
|
type = null;
|
|
_type = "include";
|
|
}
|
|
// value
|
|
else
|
|
{
|
|
value = toString value;
|
|
required = false;
|
|
type = null;
|
|
_type = "include";
|
|
};
|
|
in
|
|
assert lib.assertMsg
|
|
(lib.elem includeStatement.type [
|
|
"file"
|
|
"url"
|
|
"classpath"
|
|
null
|
|
])
|
|
''
|
|
Type of HOCON mkInclude is not of type 'file', 'url' or 'classpath':
|
|
${(lib.generators.toPretty { }) includeStatement}
|
|
'';
|
|
includeStatement;
|
|
|
|
mkAppend = value: {
|
|
inherit value;
|
|
_type = "append";
|
|
};
|
|
|
|
mkSubstitution =
|
|
value:
|
|
if lib.isString value then
|
|
{
|
|
inherit value;
|
|
optional = false;
|
|
_type = "substitution";
|
|
}
|
|
else
|
|
assert lib.assertMsg (lib.isAttrs value) ''
|
|
Value of invalid type provided to `hocon.lib.mkSubstitution`: ${lib.typeOf value}
|
|
'';
|
|
assert lib.assertMsg (value ? "value") ''
|
|
Argument to `hocon.lib.mkSubstitution` is missing a `value`:
|
|
${builtins.toJSON value}
|
|
'';
|
|
{
|
|
value = value.value;
|
|
optional = value.optional or false;
|
|
_type = "substitution";
|
|
};
|
|
};
|
|
|
|
in
|
|
{
|
|
type =
|
|
let
|
|
type' =
|
|
with lib.types;
|
|
let
|
|
atomType = nullOr (oneOf [
|
|
bool
|
|
float
|
|
int
|
|
path
|
|
str
|
|
]);
|
|
|
|
includeType = addCheck attrs (x: (x._type or null) == "include");
|
|
in
|
|
(oneOf [
|
|
atomType
|
|
(addCheck (listOf atomType) (lib.all atomType.check))
|
|
(addCheck (listOf includeType) (lib.all includeType.check))
|
|
(attrsOf type')
|
|
])
|
|
// {
|
|
description = "HOCON value";
|
|
};
|
|
in
|
|
type';
|
|
|
|
lib = hoconLib;
|
|
|
|
generate =
|
|
name: value:
|
|
callPackage
|
|
(
|
|
{
|
|
stdenvNoCC,
|
|
hocon-generator,
|
|
hocon-validator,
|
|
writeText,
|
|
}:
|
|
stdenvNoCC.mkDerivation rec {
|
|
inherit name;
|
|
|
|
dontUnpack = true;
|
|
preferLocalBuild = true;
|
|
|
|
json = builtins.toJSON value;
|
|
passAsFile = [ "json" ];
|
|
|
|
strictDeps = true;
|
|
nativeBuildInputs = [ hocon-generator ];
|
|
buildPhase = ''
|
|
runHook preBuild
|
|
hocon-generator < $jsonPath > output.conf
|
|
runHook postBuild
|
|
'';
|
|
|
|
inherit doCheck;
|
|
nativeCheckInputs = [ hocon-validator ];
|
|
checkPhase = ''
|
|
runHook preCheck
|
|
hocon-validator output.conf
|
|
runHook postCheck
|
|
'';
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
mv output.conf $out
|
|
runHook postInstall
|
|
'';
|
|
|
|
passthru.json = writeText "${name}.json" json;
|
|
}
|
|
)
|
|
{
|
|
hocon-generator = generator;
|
|
hocon-validator = validator;
|
|
};
|
|
};
|
|
}
|