7 stdenv.mkDerivation (finalAttrs: {
8 pname = "nlohmann_json_schema_validator";
11 outputs = [ "out" "dev" ];
13 src = fetchFromGitHub {
15 repo = "json-schema-validator";
16 rev = finalAttrs.version;
17 hash = "sha256-Ybr5dNmjBBPTYPvgorJ6t2+zvAjxYQISWXJmgUVHBVE=";
20 buildInputs = [ nlohmann_json ];
21 nativeBuildInputs = [ cmake ];
24 description = "JSON schema validator for JSON for Modern C++";
25 homepage = "https://github.com/pboettch/json-schema-validator";
26 license = lib.licenses.mit;
27 maintainers = with lib.maintainers; [ br337 ];
28 platforms = lib.platforms.all;