nixpkgs/pkgs/development/interpreters/rakudo/default.nix
volth 46420bbaa3 treewide: name -> pname (easy cases) (#66585)
treewide replacement of

stdenv.mkDerivation rec {
  name = "*-${version}";
  version = "*";

to pname
2019-08-15 13:41:18 +01:00

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 ];
};
}