We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 31c32fb commit b5625deCopy full SHA for b5625de
flake.nix
@@ -118,7 +118,7 @@
118
119
deployChecks = deploy: builtins.mapAttrs (_: check: check deploy) {
120
deploy-schema = deploy: final.runCommand "jsonschema-deploy-system" { } ''
121
- ${final.python3.pkgs.jsonschema}/bin/jsonschema -i ${final.writeText "deploy.json" (builtins.toJSON deploy)} ${./interface.json} && touch $out
+ ${final.check-jsonschema}/bin/check-jsonschema --schemafile ${./interface.json} ${final.writeText "deploy.json" (builtins.toJSON deploy)} && touch $out
122
'';
123
124
deploy-activate = deploy:
0 commit comments