mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 16:03:23 +00:00
27 lines
700 B
Nix
27 lines
700 B
Nix
{ lib, stdenv, fetchFromGitHub, autoreconfHook, mlton }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "mlkit";
|
|
version = "4.7.11";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "melsman";
|
|
repo = "mlkit";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-awjinXegc8jLd6OAB8QLDoXnotZhKbyfMWckp2U3MjA=";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|