2016-08-12 05:07:39 +00:00
|
|
|
{ stdenv, fetchurl, perl, icu, zlib, gmp, readline
|
|
|
|
, CoreServices, ApplicationServices }:
|
2014-06-10 23:12:33 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "rakudo-star-${version}";
|
2017-02-08 00:58:14 +00:00
|
|
|
version = "2017.01";
|
2014-06-10 23:12:33 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://rakudo.org/downloads/star/${name}.tar.gz";
|
2017-02-08 00:58:14 +00:00
|
|
|
sha256 = "07zjqdzxm30pmjqwlnr669d75bsbimy09sk0dvgm0pnn3zr92fjq";
|
2014-06-10 23:12:33 +00:00
|
|
|
};
|
|
|
|
|
2016-08-12 05:07:39 +00:00
|
|
|
buildInputs = [ icu zlib gmp readline perl ]
|
|
|
|
++ stdenv.lib.optionals stdenv.isDarwin [ CoreServices ApplicationServices ];
|
2014-06-10 23:12:33 +00:00
|
|
|
configureScript = "perl ./Configure.pl";
|
|
|
|
configureFlags =
|
2016-04-03 05:14:05 +00:00
|
|
|
[ "--backends=moar"
|
2015-04-04 04:18:24 +00:00
|
|
|
"--gen-moar"
|
2014-06-10 23:12:33 +00:00
|
|
|
"--gen-nqp"
|
|
|
|
];
|
|
|
|
|
2016-06-07 17:50:54 +00:00
|
|
|
meta = with stdenv.lib; {
|
2014-06-10 23:12:33 +00:00
|
|
|
description = "A Perl 6 implementation";
|
2018-06-27 20:12:57 +00:00
|
|
|
homepage = https://www.rakudo.org;
|
2016-06-07 17:50:54 +00:00
|
|
|
license = licenses.artistic2;
|
|
|
|
platforms = platforms.unix;
|
2017-02-08 00:58:14 +00:00
|
|
|
maintainers = with maintainers; [ thoughtpolice vrthra ];
|
2014-06-10 23:12:33 +00:00
|
|
|
};
|
|
|
|
}
|