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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

38 lines
1.0 KiB
Nix
Raw Permalink Normal View History

2023-05-06 01:46:04 +01:00
{ stdenv, fetchFromGitHub, perl, icu, zlib, gmp, lib, nqp, removeReferencesTo }:
stdenv.mkDerivation rec {
pname = "rakudo";
2024-07-03 01:59:59 +01:00
version = "2024.06";
2024-09-03 12:21:39 +01:00
# nixpkgs-update: no auto update
2023-05-06 01:46:04 +01:00
src = fetchFromGitHub {
owner = "rakudo";
repo = "rakudo";
rev = version;
2024-07-03 01:59:59 +01:00
hash = "sha256-6XWfM7KJB+lMf/YFLaQ71DMa8owZtjjuMEyWY++CJnM=";
2023-05-06 01:46:04 +01:00
fetchSubmodules = true;
};
nativeBuildInputs = [ removeReferencesTo ];
buildInputs = [ icu zlib gmp perl ];
configureScript = "perl ./Configure.pl";
configureFlags = [
"--backends=moar"
"--with-nqp=${nqp}/bin/nqp"
];
disallowedReferences = [ stdenv.cc.cc ];
postFixup = ''
2021-10-31 22:11:51 +00:00
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";
2021-12-23 23:40:32 +00:00
homepage = "https://rakudo.org";
license = licenses.artistic2;
platforms = platforms.unix;
maintainers = with maintainers; [ thoughtpolice sgo ];
};
}