[cpan2nix] perlPackages.LWP: 6.15 -> 6.33

This commit is contained in:
volth 2018-04-07 07:56:57 +00:00
parent d5c93aec8f
commit 968854ffc5

View File

@ -8503,17 +8503,18 @@ let self = _self // overrides; _self = with self; {
};
LWP = buildPerlPackage rec {
name = "libwww-perl-6.15";
name = "libwww-perl-6.33";
src = fetchurl {
url = "mirror://cpan/authors/id/E/ET/ETHER/${name}.tar.gz";
sha256 = "6f349d45c21b1ec0501c4437dfcb70570940e6c3d5bff783bd91d4cddead8322";
url = mirror://cpan/authors/id/O/OA/OALDERS/libwww-perl-6.33.tar.gz;
sha256 = "97417386f11f007ae129fe155b82fd8969473ce396a971a664c8ae6850c69b99";
};
propagatedBuildInputs = [ EncodeLocale FileListing HTMLParser HTTPCookies HTTPDaemon HTTPDate HTTPMessage HTTPNegotiate LWPMediaTypes NetHTTP URI WWWRobotRules ];
propagatedBuildInputs = [ FileListing HTMLParser HTTPCookies HTTPDaemon HTTPNegotiate NetHTTP TryTiny WWWRobotRules ];
meta = with stdenv.lib; {
description = "The World-Wide Web library for Perl";
license = with licenses; [ artistic1 gpl1Plus ];
platforms = platforms.unix;
};
buildInputs = [ TestFatal TestRequiresInternet ];
};
LWPAuthenOAuth = buildPerlPackage rec {