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

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

46 lines
1.3 KiB
Nix
Raw Normal View History

2021-12-23 23:40:25 +00:00
{ lib
, stdenv
2023-05-06 00:45:47 +00:00
, fetchFromGitHub
2021-12-23 23:40:25 +00:00
, perl
, CoreServices
, ApplicationServices
}:
stdenv.mkDerivation rec {
pname = "moarvm";
2023-06-29 06:29:24 +00:00
version = "2023.06";
2023-05-06 00:45:47 +00:00
src = fetchFromGitHub {
owner = "moarvm";
repo = "moarvm";
rev = version;
2023-06-29 06:29:24 +00:00
hash = "sha256-dMh1KwKh89ZUqIUPHOH9DPgxLWq37kW3hTTwsFe1imM=";
2023-05-06 00:45:47 +00:00
fetchSubmodules = true;
2021-12-23 23:40:25 +00:00
};
2021-11-07 22:32:06 +00:00
postPatch = ''
patchShebangs .
'' + lib.optionalString stdenv.isDarwin ''
substituteInPlace Configure.pl \
--replace '`/usr/bin/arch`' '"${stdenv.hostPlatform.darwinArch}"' \
--replace '/usr/bin/arch' "$(type -P true)" \
--replace '/usr/' '/nope/'
substituteInPlace 3rdparty/dyncall/configure \
--replace '`sw_vers -productVersion`' '"$MACOSX_DEPLOYMENT_TARGET"'
'';
buildInputs = [ perl ] ++ lib.optionals stdenv.isDarwin [ CoreServices ApplicationServices ];
doCheck = false; # MoarVM does not come with its own test suite
configureScript = "${perl}/bin/perl ./Configure.pl";
meta = with lib; {
description = "VM with adaptive optimization and JIT compilation, built for Rakudo";
2021-12-23 23:40:25 +00:00
homepage = "https://moarvm.org";
license = licenses.artistic2;
maintainers = with maintainers; [ thoughtpolice vrthra sgo ];
mainProgram = "moar";
platforms = platforms.unix;
};
}