1{
2 description = "Open-source, whole-program, optimizing Standard ML compiler";
3 longDescription = ''
4 MLton is an open source, whole-program optimizing compiler for the Standard ML programming language.
5 MLton aims to produce fast executables, and to encourage rapid prototyping and modular programming
6 by eliminating performance penalties often associated with the use of high-level language features.
7 MLton development began in 1997, and continues to this day with a growing worldwide community of
8 developers and users, who have helped to port MLton to a number of platforms.
9 Description taken from http://en.wikipedia.org/wiki/Mlton .
10 '';
11
12 homepage = "http://mlton.org/";
13 license = "bsd";
14 platforms = [
15 "i686-linux"
16 "x86_64-linux"
17 "x86_64-darwin"
18 "aarch64-darwin"
19 ];
20}