perl-CGI: 4.21 -> 4.25

Also add license information and myself as maintainer.
This commit is contained in:
Robert Helgesson 2016-01-23 19:01:39 +01:00
parent daa188107d
commit f79c8df3e8

View File

@ -1415,17 +1415,19 @@ let self = _self // overrides; _self = with self; {
};
};
CGI = buildPerlPackage {
name = "CGI-4.21";
"CGI" = buildPerlPackage rec {
name = "CGI-4.25";
src = fetchurl {
url = mirror://cpan/authors/id/L/LE/LEEJO/CGI-4.21.tar.gz;
sha256 = "340d20a2b67211752d7c270c589e463d71aea8b8d75d9417250618219d3cf884";
url = "mirror://cpan/authors/id/L/LE/LEEJO/${name}.tar.gz";
sha256 = "efb3e5235ada6a91f97ca2905399a686bedea60f6b525e52f4a147baff4f131a";
};
propagatedBuildInputs = [ HTMLParser if_ ];
doCheck = false;
buildInputs = [ TestDeep TestWarn ];
propagatedBuildInputs = [ HTMLParser self."if" ];
meta = {
homepage = https://metacpan.org/module/CGI;
description = "Handle Common Gateway Interface requests and responses";
license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
maintainers = [ maintainers.rycee ];
};
};