depot/third_party/nixpkgs/pkgs/development/compilers/mlkit/default.nix
Default email 7e47f3658e Project import generated by Copybara.
GitOrigin-RevId: 1925c603f17fc89f4c8f6bf6f631a802ad85d784
2024-09-26 11:04:55 +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 ];
};
}