Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
51 lines
1.2 KiB
Nix
51 lines
1.2 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
perl,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "moarvm";
|
|
version = "2025.06";
|
|
|
|
# nixpkgs-update: no auto update
|
|
src = fetchFromGitHub {
|
|
owner = "moarvm";
|
|
repo = "moarvm";
|
|
rev = version;
|
|
hash = "sha256-QtJ8cLAbsFJ26wkfQCbIMVU1ArWlAXjsQ/RJbQ0wRNo=";
|
|
fetchSubmodules = true;
|
|
};
|
|
|
|
postPatch = ''
|
|
patchShebangs .
|
|
''
|
|
+ lib.optionalString stdenv.hostPlatform.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`' '"11.0"'
|
|
'';
|
|
|
|
buildInputs = [ perl ];
|
|
doCheck = false; # MoarVM does not come with its own test suite
|
|
|
|
configureScript = "${perl}/bin/perl ./Configure.pl";
|
|
|
|
meta = {
|
|
description = "VM with adaptive optimization and JIT compilation, built for Rakudo";
|
|
homepage = "https://moarvm.org";
|
|
license = lib.licenses.artistic2;
|
|
maintainers = with lib.maintainers; [
|
|
thoughtpolice
|
|
sgo
|
|
prince213
|
|
];
|
|
mainProgram = "moar";
|
|
platforms = lib.platforms.unix;
|
|
};
|
|
}
|