perl-B-C: 1.52 -> 1.54

Also fix license field.
This commit is contained in:
Robert Helgesson 2016-04-17 13:03:53 +02:00
parent 0842e75f89
commit 6143926c45
1 changed files with 5 additions and 5 deletions

View File

@ -527,17 +527,17 @@ let self = _self // overrides; _self = with self; {
}; };
}; };
BC = buildPerlPackage { BC = buildPerlPackage rec {
name = "B-C-1.52"; name = "B-C-1.54";
src = fetchurl { src = fetchurl {
url = mirror://cpan/authors/id/R/RU/RURBAN/B-C-1.52.tar.gz; url = "mirror://cpan/authors/id/R/RU/RURBAN/${name}.tar.gz";
sha256 = "072b4b9e39431ad8ef5173557c26ade97f985cf150f6580a20f42dd9fc3651a7"; sha256 = "d07e5af5fb798fcd3f4eda5e40744a14c1b3ef9e585a7dca55b5db31cb1d28d3";
}; };
propagatedBuildInputs = [ BFlags IPCRun Opcodes ]; propagatedBuildInputs = [ BFlags IPCRun Opcodes ];
meta = { meta = {
homepage = http://www.perl-compiler.org; homepage = http://www.perl-compiler.org;
description = "Perl compiler"; description = "Perl compiler";
license = "perl"; license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
}; };
}; };