nixpkgs/pkgs/development/interpreters/rakudo/default.nix

30 lines
857 B
Nix
Raw Normal View History

{ stdenv, fetchurl, perl, icu, zlib, gmp, readline
, CoreServices, ApplicationServices }:
stdenv.mkDerivation rec {
name = "rakudo-star-${version}";
2016-07-22 18:16:40 +00:00
version = "2016.07";
src = fetchurl {
url = "http://rakudo.org/downloads/star/${name}.tar.gz";
2016-07-22 18:16:40 +00:00
sha256 = "0czx7w1chf108mpyps7k7nqq8cbsy1rbb87ajms9xj65l4ywg8ka";
};
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 = "http://www.rakudo.org";
license = licenses.artistic2;
platforms = platforms.unix;
2016-07-22 18:16:40 +00:00
maintainers = [ maintainers.thoughtpolice maintainers.vrthra ];
};
}