forked from mirrors/nixpkgs
34 lines
1,007 B
Nix
34 lines
1,007 B
Nix
{ stdenv, fetchurl, perl, icu, zlib, gmp, lib, nqp, removeReferencesTo }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "rakudo";
|
|
version = "2022.07";
|
|
|
|
src = fetchurl {
|
|
url = "https://rakudo.org/dl/rakudo/rakudo-${version}.tar.gz";
|
|
hash = "sha256-ejvJ1lTh0nkqBVtPrxFu820UH2tq3eeqcDF3BfJgkK0=";
|
|
};
|
|
|
|
nativeBuildInputs = [ removeReferencesTo ];
|
|
|
|
buildInputs = [ icu zlib gmp perl ];
|
|
configureScript = "perl ./Configure.pl";
|
|
configureFlags = [
|
|
"--backends=moar"
|
|
"--with-nqp=${nqp}/bin/nqp"
|
|
];
|
|
|
|
disallowedReferences = [ stdenv.cc.cc ];
|
|
postFixup = ''
|
|
remove-references-to -t ${stdenv.cc.cc} "$(readlink -f $out/share/perl6/runtime/dynext/libperl6_ops_moar${stdenv.hostPlatform.extensions.sharedLibrary})"
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Raku implementation on top of Moar virtual machine";
|
|
homepage = "https://rakudo.org";
|
|
license = licenses.artistic2;
|
|
platforms = platforms.unix;
|
|
maintainers = with maintainers; [ thoughtpolice vrthra sgo ];
|
|
};
|
|
}
|