perl-Encode: 2.78 -> 2.93

This commit is contained in:
Robert Helgesson 2017-11-11 18:12:40 +01:00
parent 98d1f780b5
commit 5e98876100
No known key found for this signature in database
GPG Key ID: C3DB11069E65DC86

View File

@ -4812,14 +4812,14 @@ let self = _self // overrides; _self = with self; {
}; };
}; };
Encode = buildPerlPackage { Encode = buildPerlPackage rec {
name = "Encode-2.78"; name = "Encode-2.93";
src = fetchurl { src = fetchurl {
url = mirror://cpan/authors/id/D/DA/DANKOGAI/Encode-2.78.tar.gz; url = "mirror://cpan/authors/id/D/DA/DANKOGAI/${name}.tar.gz";
sha256 = "1fc8d5c0e75ef85beeac71d1fe4a3bfcb8207755a46b32f783a3a6682672762a"; sha256 = "2d06b0375c84a75cf3762685e6d94c3aef25833fd0427daa0ae87b04ae6f739c";
}; };
meta = { meta = {
description = "Unknown"; description = "Character encodings in Perl";
license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
}; };
}; };