[cpan2nix] perlPackages.CGISimple: 1.115 -> 1.15
This commit is contained in:
parent
a76e6b04b1
commit
739f01ad1e
|
@ -1769,17 +1769,18 @@ let self = _self // overrides; _self = with self; {
|
||||||
propagatedBuildInputs = [ CGI ];
|
propagatedBuildInputs = [ CGI ];
|
||||||
};
|
};
|
||||||
|
|
||||||
CGISimple = buildPerlPackage rec {
|
CGISimple = buildPerlModule rec {
|
||||||
name = "CGI-Simple-1.115";
|
name = "CGI-Simple-1.15";
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "mirror://cpan/authors/id/S/SZ/SZABGAB/${name}.tar.gz";
|
url = mirror://cpan/authors/id/M/MA/MANWAR/CGI-Simple-1.15.tar.gz;
|
||||||
sha256 = "1nkyb1m1g5r47xykflf68dplanih5p15njv82frbgbsms34kp1sg";
|
sha256 = "013dcy9k4sj9alkksk5aqz65ryxw0rxgg71c7w666y941gd8n46q";
|
||||||
};
|
};
|
||||||
propagatedBuildInputs = [ IOStringy ];
|
propagatedBuildInputs = [ IOStringy ];
|
||||||
meta = {
|
meta = {
|
||||||
description = "A Simple totally OO CGI interface that is CGI.pm compliant";
|
description = "A Simple totally OO CGI interface that is CGI.pm compliant";
|
||||||
license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
|
license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
|
||||||
};
|
};
|
||||||
|
buildInputs = [ TestException TestNoWarnings ];
|
||||||
};
|
};
|
||||||
|
|
||||||
CGIStruct = buildPerlPackage {
|
CGIStruct = buildPerlPackage {
|
||||||
|
|
Loading…
Reference in New Issue