mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
Add Rakudo Star (closes #2054)
Signed-off-by: Austin Seipp <aseipp@pobox.com>
This commit is contained in:
parent
fe9133d522
commit
2f996c6075
2 changed files with 29 additions and 0 deletions
27
pkgs/development/interpreters/rakudo/default.nix
Normal file
27
pkgs/development/interpreters/rakudo/default.nix
Normal file
|
@ -0,0 +1,27 @@
|
|||
{ stdenv, fetchurl, perl, jdk, icu, zlib, gmp, readline }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "rakudo-star-${version}";
|
||||
version = "2014.04";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://rakudo.org/downloads/star/${name}.tar.gz";
|
||||
sha256 = "0spdrxc2kiidpgni1vl71brgs4d76h8029w5jxvah3yvjcqixz7l";
|
||||
};
|
||||
|
||||
buildInputs = [ icu zlib gmp readline jdk perl ];
|
||||
configureScript = "perl ./Configure.pl";
|
||||
configureFlags =
|
||||
[ "--gen-moar"
|
||||
"--gen-nqp"
|
||||
"--gen-parrot"
|
||||
];
|
||||
|
||||
meta = {
|
||||
description = "A Perl 6 implementation";
|
||||
homepage = "http://www.rakudo.org";
|
||||
license = stdenv.lib.licenses.artistic2;
|
||||
platforms = stdenv.lib.platforms.unix;
|
||||
maintainers = [ stdenv.lib.maintainers.thoughtpolice ];
|
||||
};
|
||||
}
|
|
@ -3549,6 +3549,8 @@ let
|
|||
|
||||
racket = callPackage ../development/interpreters/racket { };
|
||||
|
||||
rakudo = callPackage ../development/interpreters/rakudo { };
|
||||
|
||||
rascal = callPackage ../development/interpreters/rascal { };
|
||||
|
||||
regina = callPackage ../development/interpreters/regina { };
|
||||
|
|
Loading…
Reference in a new issue