mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-19 04:03:56 +00:00
30da2b5659
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.
11 lines
254 B
Nix
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;
|
|
};
|
|
}
|