depot/pkgs/development/compilers/mlkit/default.nix
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00:00

37 lines
949 B
Nix

{ lib, stdenv, fetchFromGitHub, autoreconfHook, mlton }:
stdenv.mkDerivation rec {
pname = "mlkit";
version = "4.7.12";
src = fetchFromGitHub {
owner = "melsman";
repo = "mlkit";
rev = "v${version}";
sha256 = "sha256-9a2CbIOHdN+kTtm2Z001qOEO/nXuSLrzq0ovgHU1hTQ=";
};
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 ];
};
}