+4
pkgs/by-name/js/json-schema-catalog-rs/package.nix
+4
pkgs/by-name/js/json-schema-catalog-rs/package.nix
······
+33
pkgs/data/json-schema/catalogs/json-patch-schemastore.nix
+33
pkgs/data/json-schema/catalogs/json-patch-schemastore.nix
···+# Note that we don't use the json.schemastore.org URLs directly, as those are mutable resources.+url = "https://github.com/schemastore/schemastore/raw/138439cd4f9d7bf57d6747b674ce5bbcffbfafdc/src/schemas/json/json-patch.json";+A JSON Patch is a sequence of editing and checking operations to perform against another JSON document.+The schema is maintained by the community at https://www.schemastore.org, which is a collection of JSON Schemas for various purposes.+changelog = "https://github.com/schemastore/schemastore/commits/master/src/schemas/json/json-patch.json";
+39
pkgs/data/json-schema/catalogs/json-schema.nix
+39
pkgs/data/json-schema/catalogs/json-schema.nix
···
+28
pkgs/data/json-schema/default.nix
+28
pkgs/data/json-schema/default.nix
···
+120
pkgs/data/json-schema/lib.nix
+120
pkgs/data/json-schema/lib.nix
···+A somewhat opinionated method for constructing a JSON Schema Catalog from files in a Nix store.+It enables offline use, e.g. in build processes, and therefore it improves performance, robustness and safety.+${theLicensesApply} to the schemas in this catalog. The catalog file itself is licensed under the terms of the Nix expression that governs it, e.g. MIT in the case of Nixpkgs.+drv = runCommand "${package.name}${lib.optionalString (version != null) "-${version}"}" drvArgs ''
+69
pkgs/data/json-schema/tests.nix
+69
pkgs/data/json-schema/tests.nix
···
+7
pkgs/top-level/all-packages.nix
+7
pkgs/top-level/all-packages.nix
···+It enables offline use, e.g. in build processes, and it improves performance, robustness and safety.