perl-podlinkchecker: 12 -> 14

This commit is contained in:
Robert Helgesson 2016-05-17 23:48:05 +02:00
parent d90bf07a70
commit d24b73f0de

View file

@ -10223,17 +10223,17 @@ let self = _self // overrides; _self = with self; {
};
};
podlinkcheck = buildPerlPackage {
name = "podlinkcheck-12";
podlinkcheck = buildPerlPackage rec {
name = "podlinkcheck-14";
src = fetchurl {
url = mirror://cpan/authors/id/K/KR/KRYDE/podlinkcheck-12.tar.gz;
sha256 = "c5da0e390b58655934e1df57937d29d7de13b99f5638fe44833832a5b39c8aa5";
url = "mirror://cpan/authors/id/K/KR/KRYDE/${name}.tar.gz";
sha256 = "8ad152bdffbb7f5080616c0c0ae142f75b4c1255ed82b9cd80a5f4e3172fed3d";
};
propagatedBuildInputs = [ FileFindIterator IPCRun constantdefer libintlperl ];
meta = with stdenv.lib; {
propagatedBuildInputs = [ FileFindIterator FileHomeDir IPCRun constantdefer libintlperl ];
meta = {
homepage = http://user42.tuxfamily.org/podlinkcheck/index.html;
description = "Check POD L<> link references";
license = licenses.gpl3Plus;
license = stdenv.lib.licenses.gpl3Plus;
};
};