nixpkgs/pkgs/development/interpreters/rakudo/default.nix
Matthew Bauer 5f0d155f5b rakudo: fix darwin build
needs:

- CoreServices
- ApplicationServices
2016-08-16 19:25:44 +00:00

30 lines
857 B
Nix

{ stdenv, fetchurl, perl, icu, zlib, gmp, readline
, CoreServices, ApplicationServices }:
stdenv.mkDerivation rec {
name = "rakudo-star-${version}";
version = "2016.07";
src = fetchurl {
url = "http://rakudo.org/downloads/star/${name}.tar.gz";
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;
maintainers = [ maintainers.thoughtpolice maintainers.vrthra ];
};
}