2ea8997135
GitOrigin-RevId: 5bc8b980b9178ef9a4bb622320cf34e59ea2ea10
26 lines
697 B
Nix
26 lines
697 B
Nix
{ lib, stdenv, fetchFromGitHub, autoreconfHook, mlton }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "mlkit";
|
|
version = "4.5.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "melsman";
|
|
repo = "mlkit";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-Wq+Os7nzRA5Pxz6Ba7DudcDQs3KA0eYVLy1nO/A16EE=";
|
|
};
|
|
|
|
nativeBuildInputs = [ autoreconfHook mlton ];
|
|
|
|
buildFlags = ["mlkit" "mlkit_libs"];
|
|
|
|
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 ];
|
|
};
|
|
}
|