core/pkgs/by-name/gm/gmp/packages.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
242 B
Nix
Raw Normal View History

2024-05-02 00:46:19 +00:00
{ ... }:
res: pkgs: super:
with pkgs; {
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; };
}