Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: da20b8a7f600
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: ff064b44791e
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Oct 3, 2019

  1. Copy the full SHA
    8cb5a3c View commit details

Commits on Oct 14, 2019

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

    perlPackages.JSONValidator: init at 3.15
    c0bw3b authored Oct 14, 2019
    Copy the full SHA
    ff064b4 View commit details
Showing with 17 additions and 0 deletions.
  1. +17 −0 pkgs/top-level/perl-packages.nix
17 changes: 17 additions & 0 deletions pkgs/top-level/perl-packages.nix
Original file line number Diff line number Diff line change
@@ -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";