nixpkgs/pkgs/development/compilers/mlton/default.nix
Sophia Donataccio 30da2b5659 mlton: adds binary release package for mlton version 20180207
This works the same as the binary package in the old derivation, by
patching the release binary. The difference is that this derivation
is also exposed at the top level.
2018-10-12 00:21:49 -04:00

11 lines
254 B
Nix

{ stdenv, fetchurl, fetchFromGitHub, patchelf, gmp }:
rec {
mlton20130715 = import ./20130715.nix {
inherit stdenv fetchurl patchelf gmp;
};
mlton20180207Binary = import ./20180207-binary.nix {
inherit stdenv fetchurl patchelf gmp;
};
}