46420bbaa3
treewide replacement of stdenv.mkDerivation rec { name = "*-${version}"; version = "*"; to pname
30 lines
852 B
Nix
30 lines
852 B
Nix
{ stdenv, fetchurl, perl, icu, zlib, gmp, readline
|
|
, CoreServices, ApplicationServices }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "rakudo-star";
|
|
version = "2017.01";
|
|
|
|
src = fetchurl {
|
|
url = "http://rakudo.org/downloads/star/${pname}-${version}.tar.gz";
|
|
sha256 = "07zjqdzxm30pmjqwlnr669d75bsbimy09sk0dvgm0pnn3zr92fjq";
|
|
};
|
|
|
|
buildInputs = [ icu zlib gmp readline perl ]
|
|
++ stdenv.lib.optionals stdenv.isDarwin [ CoreServices ApplicationServices ];
|
|
configureScript = "perl ./Configure.pl";
|
|
configureFlags =
|
|
[ "--backends=moar"
|
|
"--gen-moar"
|
|
"--gen-nqp"
|
|
];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "A Perl 6 implementation";
|
|
homepage = https://www.rakudo.org;
|
|
license = licenses.artistic2;
|
|
platforms = platforms.unix;
|
|
maintainers = with maintainers; [ thoughtpolice vrthra ];
|
|
};
|
|
}
|