perlPackages.JSONWebToken: init at 0.10

This commit is contained in:
Robin Bate Boerop 2016-03-26 14:54:02 -03:00 committed by Joachim Fasting
parent 536d08cfbb
commit 6e707b6dd7
No known key found for this signature in database
GPG Key ID: 4330820E1E04DCF4

View File

@ -6669,6 +6669,21 @@ let self = _self // overrides; _self = with self; {
};
};
JSONWebToken = buildPerlModule rec {
name = "JSON-WebToken-0.10";
src = fetchurl {
url = "mirror://cpan/authors/id/X/XA/XAICRON/${name}.tar.gz";
sha256 = "77c182a98528f1714d82afc548d5b3b4dc93e67069128bb9b9413f24cf07248b";
};
buildInputs = [ TestMockGuard TestRequires ];
propagatedBuildInputs = [ JSON ];
meta = {
homepage = https://github.com/xaicron/p5-JSON-WebToken;
description = "JSON Web Token (JWT) implementation";
license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
JSONXS = buildPerlPackage {
name = "JSON-XS-2.34";
src = fetchurl {