clan-core/lib/jsonschema/flake-module.nix

32 lines
1.0 KiB
Nix
Raw Normal View History

{
2024-03-17 18:48:49 +00:00
perSystem =
{ pkgs, ... }:
{
checks = {
2024-03-17 18:48:49 +00:00
# check if the `clan config` example jsonschema and data is valid
lib-jsonschema-example-valid = pkgs.runCommand "lib-jsonschema-example-valid" { } ''
echo "Checking that example-schema.json is valid"
${pkgs.check-jsonschema}/bin/check-jsonschema \
--check-metaschema ${./.}/example-schema.json
2024-03-17 18:48:49 +00:00
echo "Checking that example-data.json is valid according to example-schema.json"
${pkgs.check-jsonschema}/bin/check-jsonschema \
--schemafile ${./.}/example-schema.json \
${./.}/example-data.json
2024-03-17 18:48:49 +00:00
touch $out
'';
2024-03-17 18:48:49 +00:00
# check if the `clan config` nix jsonschema converter unit tests succeed
lib-jsonschema-nix-unit-tests = pkgs.runCommand "lib-jsonschema-nix-unit-tests" { } ''
export NIX_PATH=nixpkgs=${pkgs.path}
${pkgs.nix-unit}/bin/nix-unit \
${./.}/test.nix \
--eval-store $(realpath .)
touch $out
'';
};
};
}