Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
24 lines
848 B
Nix
24 lines
848 B
Nix
{
|
|
lib,
|
|
}:
|
|
{
|
|
description = "Open-source, whole-program, optimizing Standard ML compiler";
|
|
longDescription = ''
|
|
MLton is an open source, whole-program optimizing compiler for the Standard ML programming language.
|
|
MLton aims to produce fast executables, and to encourage rapid prototyping and modular programming
|
|
by eliminating performance penalties often associated with the use of high-level language features.
|
|
MLton development began in 1997, and continues to this day with a growing worldwide community of
|
|
developers and users, who have helped to port MLton to a number of platforms.
|
|
Description taken from http://en.wikipedia.org/wiki/Mlton .
|
|
'';
|
|
|
|
homepage = "http://mlton.org/";
|
|
license = lib.licenses.smlnj;
|
|
platforms = [
|
|
"i686-linux"
|
|
"x86_64-linux"
|
|
"x86_64-darwin"
|
|
"aarch64-darwin"
|
|
];
|
|
}
|