8 stdenv.mkDerivation (finalAttrs: {
9 pname = "nlohmann_json_schema_validator";
17 src = fetchFromGitHub {
19 repo = "json-schema-validator";
20 rev = finalAttrs.version;
21 hash = "sha256-Ybr5dNmjBBPTYPvgorJ6t2+zvAjxYQISWXJmgUVHBVE=";
24 buildInputs = [ nlohmann_json ];
25 nativeBuildInputs = [ cmake ];
28 description = "JSON schema validator for JSON for Modern C++";
29 homepage = "https://github.com/pboettch/json-schema-validator";
30 license = lib.licenses.mit;
31 maintainers = with lib.maintainers; [ br337 ];
32 platforms = lib.platforms.all;