1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-21 13:10:33 +00:00

perl-PPI: 1.220 -> 1.224

This commit is contained in:
Robert Helgesson 2017-05-17 20:42:19 +02:00
parent 3e0b6b5141
commit 23f6332634
No known key found for this signature in database
GPG key ID: C3DB11069E65DC86

View file

@ -10789,13 +10789,13 @@ let self = _self // overrides; _self = with self; {
}; };
}; };
PPI = buildPerlPackage { PPI = buildPerlPackage rec {
name = "PPI-1.220"; name = "PPI-1.224";
src = fetchurl { src = fetchurl {
url = mirror://cpan/authors/id/M/MI/MITHALDU/PPI-1.220.tar.gz; url = "mirror://cpan/authors/id/M/MI/MITHALDU/${name}.tar.gz";
sha256 = "1e15be50e7d95a36d351af8bf5074f6695a2c72165e586d93e616183e7602b83"; sha256 = "8d0f9faaea68515fb5aa6323115dcf98ea6c1dec4441f3844d3b9633b6cc9d94";
}; };
buildInputs = [ ClassInspector FileRemove TestNoWarnings TestObject TestSubCalls ]; buildInputs = [ ClassInspector FileRemove TestDeep TestObject TestSubCalls TestWarn ];
propagatedBuildInputs = [ Clone IOString ListMoreUtils ParamsUtil TaskWeaken ]; propagatedBuildInputs = [ Clone IOString ListMoreUtils ParamsUtil TaskWeaken ];
# Remove test that fails due to unexpected shebang after # Remove test that fails due to unexpected shebang after
@ -10806,7 +10806,6 @@ let self = _self // overrides; _self = with self; {
homepage = https://github.com/adamkennedy/PPI; homepage = https://github.com/adamkennedy/PPI;
description = "Parse, Analyze and Manipulate Perl (without perl)"; description = "Parse, Analyze and Manipulate Perl (without perl)";
license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
maintainers = [ maintainers.rycee ];
}; };
}; };