perl-Exception-Base: 0.25 -> 0.2501

Fixes build under Perl 5.22.
This commit is contained in:
Robert Helgesson 2016-04-23 19:16:20 +02:00
parent 5895b38c29
commit 46e5412cfd

View File

@ -4516,16 +4516,17 @@ let self = _self // overrides; _self = with self; {
}; };
}; };
ExceptionBase = buildPerlPackage { ExceptionBase = buildPerlPackage rec {
name = "Exception-Base-0.25"; name = "Exception-Base-0.2501";
src = fetchurl { src = fetchurl {
url = mirror://cpan/authors/id/D/DE/DEXTER/Exception-Base-0.25.tar.gz; url = "mirror://cpan/authors/id/D/DE/DEXTER/${name}.tar.gz";
sha256 = "1s2is862xba2yy633wn2nklrya36yrlwxlbpqjrv8m31xj2c8khw"; sha256 = "5723dd78f4ac0b4d262a05ea46af663ea00d8096b2e9c0a43515c210760e1e75";
}; };
buildInputs = [ TestUnitLite ]; buildInputs = [ TestUnitLite ];
meta = { meta = {
description = "Lightweight exceptions";
license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
maintainers = with maintainers; [ ocharles ]; maintainers = with maintainers; [ ocharles ];
platforms = stdenv.lib.platforms.unix;
}; };
}; };