2024-05-02 00:46:19 +00:00
|
|
|
{ ... }:
|
|
|
|
res: pkgs: super:
|
|
|
|
|
2024-06-30 08:16:52 +00:00
|
|
|
with pkgs; {
|
2024-05-02 00:46:19 +00:00
|
|
|
gmp4 = callPackage ./4.3.2.nix { }; # required by older GHC versions
|
|
|
|
gmp5 = callPackage ./5.1.x.nix { };
|
|
|
|
gmp6 = callPackage ./6.x.nix { };
|
|
|
|
gmp = gmp6;
|
|
|
|
gmpxx = gmp.override { cxx = true; };
|
|
|
|
}
|