rakudo: 2016.01 -> 2016.04

Updating Rakudo (Perl 6 compiler) to 2016.04
This commit is contained in:
Rahul Gopinath 2016-06-07 10:50:54 -07:00
parent 109096247a
commit 70b0f3128d

View file

@ -2,11 +2,11 @@
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "rakudo-star-${version}"; name = "rakudo-star-${version}";
version = "2016.01"; version = "2016.04";
src = fetchurl { src = fetchurl {
url = "http://rakudo.org/downloads/star/${name}.tar.gz"; url = "http://rakudo.org/downloads/star/${name}.tar.gz";
sha256 = "feb385c5d05166061f413882e442d3a0ec53884918768940d3f00bb63bc85497"; sha256 = "11xzgwy155xpagrn3gzg8vqnqgjxwar70a3gzzmc9sica5064pva";
}; };
buildInputs = [ icu zlib gmp readline perl ]; buildInputs = [ icu zlib gmp readline perl ];
@ -17,11 +17,11 @@ stdenv.mkDerivation rec {
"--gen-nqp" "--gen-nqp"
]; ];
meta = { meta = with stdenv.lib; {
description = "A Perl 6 implementation"; description = "A Perl 6 implementation";
homepage = "http://www.rakudo.org"; homepage = "http://www.rakudo.org";
license = stdenv.lib.licenses.artistic2; license = licenses.artistic2;
platforms = stdenv.lib.platforms.unix; platforms = platforms.unix;
maintainers = [ stdenv.lib.maintainers.thoughtpolice ]; maintainers = [ maintainers.thoughtpolice ];
}; };
} }