38 lines
949 B
Nix
38 lines
949 B
Nix
{ lib, stdenv, fetchFromGitHub, autoreconfHook, mlton }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "mlkit";
|
|
version = "4.7.13";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "melsman";
|
|
repo = "mlkit";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-sh6IaSrVOULGixQFpm1ada4Kzly/TVCgsZwEzV+7lzc=";
|
|
};
|
|
|
|
nativeBuildInputs = [ autoreconfHook mlton ];
|
|
|
|
buildFlags = [ "mlkit" "mlkit_libs" ];
|
|
|
|
doCheck = true;
|
|
|
|
checkPhase = ''
|
|
runHook preCheck
|
|
echo ==== Running MLKit test suite: test ====
|
|
make -C test_dev test
|
|
echo ==== Running MLKit test suite: test_prof ====
|
|
make -C test_dev test_prof
|
|
runHook postCheck
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Standard ML Compiler and Toolkit";
|
|
homepage = "https://elsman.com/mlkit/";
|
|
changelog = "https://github.com/melsman/mlkit/blob/v${version}/NEWS.md";
|
|
license = licenses.gpl2Plus;
|
|
platforms = platforms.unix;
|
|
maintainers = with maintainers; [ athas ];
|
|
};
|
|
}
|