mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-16 09:54:52 +00:00
4f0dadbf38
After final improvements to the official formatter implementation, this commit now performs the first treewide reformat of Nix files using it. This is part of the implementation of RFC 166. Only "inactive" files are reformatted, meaning only files that aren't being touched by any PR with activity in the past 2 months. This is to avoid conflicts for PRs that might soon be merged. Later we can do a full treewide reformat to get the rest, which should not cause as many conflicts. A CI check has already been running for some time to ensure that new and already-formatted files are formatted, so the files being reformatted here should also stay formatted. This commit was automatically created and can be verified using nix-builda08b3a4d19
.tar.gz \ --argstr baseRevb32a094368
result/bin/apply-formatting $NIXPKGS_PATH
21 lines
823 B
Nix
21 lines
823 B
Nix
{
|
|
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 = "bsd";
|
|
platforms = [
|
|
"i686-linux"
|
|
"x86_64-linux"
|
|
"x86_64-darwin"
|
|
"aarch64-darwin"
|
|
];
|
|
}
|