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

26 lines
815 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, perl
, CoreServices, ApplicationServices }:
stdenv.mkDerivation rec {
pname = "moarvm";
2021-07-25 07:30:53 +00:00
version = "2021.07";
src = fetchurl {
2021-06-20 05:00:49 +00:00
url = "https://moarvm.org/releases/MoarVM-${version}.tar.gz";
2021-07-25 07:30:53 +00:00
sha256 = "1zk3dpvgrgg4kam3hx9pq1a2l2kgw822dci8hg7x0cn1lppwwdw4";
};
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-06-20 05:00:49 +00:00
homepage = "https://moarvm.org";
license = licenses.artistic2;
platforms = platforms.unix;
maintainers = with maintainers; [ thoughtpolice vrthra sgo ];
};
}