ccb142916c
dependencies: moarvm: 2020.01.1 -> 2020.02 nqp: 2020.01 -> 2020.01 recommended: zef: 0.8.2 -> 0.8.3
30 lines
805 B
Nix
30 lines
805 B
Nix
{ stdenv, fetchurl, perl, lib, moarvm }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "nqp";
|
|
version = "2020.02";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/perl6/nqp/releases/download/${version}/nqp-${version}.tar.gz";
|
|
sha256 = "0ik3fscywxjx1qxlbjf68msz83alpckzw3myj9jmkalvy8q5v0nk";
|
|
};
|
|
|
|
buildInputs = [ perl ];
|
|
|
|
configureScript = "${perl}/bin/perl ./Configure.pl";
|
|
configureFlags = [
|
|
"--backends=moar"
|
|
"--with-moar=${moarvm}/bin/moar"
|
|
];
|
|
|
|
doCheck = true;
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Not Quite Perl -- a lightweight Raku-like environment for virtual machines";
|
|
homepage = "https://github.com/perl6/nqp";
|
|
license = licenses.artistic2;
|
|
platforms = platforms.unix;
|
|
maintainers = with maintainers; [ thoughtpolice vrthra sgo ];
|
|
};
|
|
}
|