Merge pull request #70335 from stigtsp/package/perl-json-validator-init

perlPackages.JSONValidator: init at 3.15
This commit is contained in:
Renaud 2019-10-14 11:52:35 +02:00 committed by GitHub
commit ff064b4479
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -9170,6 +9170,23 @@ let
};
};
JSONValidator = buildPerlPackage {
pname = "JSON-Validator";
version = "3.15";
src = fetchurl {
url = "mirror://cpan/authors/id/J/JH/JHTHORSEN/JSON-Validator-3.15.tar.gz";
sha256 = "ce14ed018b9843ef022c4c14e2171545d3da92e533c8f122b8e33f27444b2a6c";
};
buildInputs = [ TestDeep ];
propagatedBuildInputs = [ Mojolicious YAMLLibYAML DataValidateDomain DataValidateIP NetIDNEncode ];
meta = {
homepage = "https://github.com/mojolicious/json-validator";
description = "Validate data against a JSON schema";
license = stdenv.lib.licenses.artistic2;
maintainers = [ maintainers.sgo ];
};
};
JSONWebToken = buildPerlModule {
pname = "JSON-WebToken";
version = "0.10";