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