2020-10-19 20:32:49 +02:00
|
|
|
{ buildPackages, pkgs, newScope, stdenv }:
|
2011-03-12 18:28:15 +01:00
|
|
|
|
2017-08-01 18:44:08 +02:00
|
|
|
let
|
|
|
|
# These are attributes in compiler and packages that don't support integer-simple.
|
|
|
|
integerSimpleExcludes = [
|
2020-03-18 11:10:31 +01:00
|
|
|
"ghc865Binary"
|
2020-09-26 14:29:11 +02:00
|
|
|
"ghc8102Binary"
|
2020-11-02 19:03:02 +01:00
|
|
|
"ghc8102BinaryMinimal"
|
2021-08-29 15:29:27 +02:00
|
|
|
"ghc8107Binary"
|
|
|
|
"ghc8107BinaryMinimal"
|
2021-08-25 12:55:30 +02:00
|
|
|
"ghcjs"
|
|
|
|
"ghcjs810"
|
2017-08-01 18:44:08 +02:00
|
|
|
"integer-simple"
|
2020-06-19 11:06:42 +02:00
|
|
|
"native-bignum"
|
|
|
|
"ghcHEAD"
|
|
|
|
];
|
|
|
|
|
|
|
|
nativeBignumIncludes = [
|
|
|
|
"ghcHEAD"
|
2017-08-01 18:44:08 +02:00
|
|
|
];
|
|
|
|
|
2021-10-26 12:20:34 +02:00
|
|
|
haskellLibUncomposable = import ../development/haskell-modules/lib.nix {
|
2017-08-01 18:44:08 +02:00
|
|
|
inherit (pkgs) lib;
|
|
|
|
inherit pkgs;
|
|
|
|
};
|
2009-04-18 14:47:11 +02:00
|
|
|
|
2018-04-21 19:37:49 +02:00
|
|
|
callPackage = newScope {
|
2021-10-26 12:20:34 +02:00
|
|
|
haskellLib = haskellLibUncomposable.compose;
|
2018-04-21 19:37:49 +02:00
|
|
|
overrides = pkgs.haskell.packageOverrides;
|
|
|
|
};
|
2009-04-18 14:47:11 +02:00
|
|
|
|
2018-03-16 21:52:18 +01:00
|
|
|
bootstrapPackageSet = self: super: {
|
|
|
|
mkDerivation = drv: super.mkDerivation (drv // {
|
|
|
|
doCheck = false;
|
|
|
|
doHaddock = false;
|
|
|
|
enableExecutableProfiling = false;
|
|
|
|
enableLibraryProfiling = false;
|
|
|
|
enableSharedExecutables = false;
|
|
|
|
enableSharedLibraries = false;
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2018-09-25 00:34:04 +02:00
|
|
|
# Use this rather than `rec { ... }` below for sake of overlays.
|
|
|
|
inherit (pkgs.haskell) compiler packages;
|
|
|
|
|
|
|
|
in {
|
2021-10-26 12:20:34 +02:00
|
|
|
lib = haskellLibUncomposable;
|
2010-11-15 21:28:42 +01:00
|
|
|
|
2021-07-22 13:51:57 +02:00
|
|
|
package-list = callPackage ../development/haskell-modules/package-list.nix {};
|
|
|
|
|
2015-04-19 18:47:45 +02:00
|
|
|
compiler = {
|
2010-08-30 19:10:21 +02:00
|
|
|
|
2020-03-18 11:10:31 +01:00
|
|
|
ghc865Binary = callPackage ../development/compilers/ghc/8.6.5-binary.nix { };
|
2019-01-24 15:01:40 +01:00
|
|
|
|
2020-09-24 12:25:27 +02:00
|
|
|
ghc8102Binary = callPackage ../development/compilers/ghc/8.10.2-binary.nix {
|
|
|
|
llvmPackages = pkgs.llvmPackages_9;
|
|
|
|
};
|
|
|
|
|
2020-11-03 10:18:21 +01:00
|
|
|
ghc8102BinaryMinimal = callPackage ../development/compilers/ghc/8.10.2-binary.nix {
|
|
|
|
llvmPackages = pkgs.llvmPackages_9;
|
|
|
|
minimal = true;
|
|
|
|
};
|
|
|
|
|
2021-08-29 15:29:27 +02:00
|
|
|
ghc8107Binary = callPackage ../development/compilers/ghc/8.10.7-binary.nix {
|
2021-08-23 17:21:32 +02:00
|
|
|
llvmPackages = pkgs.llvmPackages_11;
|
|
|
|
};
|
|
|
|
|
2021-08-29 15:29:27 +02:00
|
|
|
ghc8107BinaryMinimal = callPackage ../development/compilers/ghc/8.10.7-binary.nix {
|
2021-08-23 17:21:32 +02:00
|
|
|
llvmPackages = pkgs.llvmPackages_11;
|
|
|
|
minimal = true;
|
|
|
|
};
|
|
|
|
|
2021-07-26 12:33:18 +02:00
|
|
|
ghc884 = callPackage ../development/compilers/ghc/8.8.4.nix {
|
2021-09-19 15:08:51 +02:00
|
|
|
bootPkgs =
|
2021-08-23 17:21:32 +02:00
|
|
|
# aarch64 ghc865Binary gets SEGVs due to haskell#15449 or similar
|
|
|
|
# Musl bindists do not exist for ghc 8.6.5, so we use 8.10.* for them
|
2021-09-19 15:08:51 +02:00
|
|
|
if stdenv.isAarch64 || stdenv.hostPlatform.isMusl then
|
2021-09-26 19:40:56 +02:00
|
|
|
packages.ghc8102BinaryMinimal
|
2020-10-19 20:32:49 +02:00
|
|
|
else
|
|
|
|
packages.ghc865Binary;
|
2020-07-17 16:57:01 +02:00
|
|
|
inherit (buildPackages.python3Packages) sphinx;
|
|
|
|
buildLlvmPackages = buildPackages.llvmPackages_7;
|
|
|
|
llvmPackages = pkgs.llvmPackages_7;
|
2021-07-26 12:33:18 +02:00
|
|
|
};
|
2021-08-27 00:36:49 +02:00
|
|
|
ghc8107 = callPackage ../development/compilers/ghc/8.10.7.nix {
|
2021-09-19 15:08:51 +02:00
|
|
|
bootPkgs =
|
2021-08-23 17:21:32 +02:00
|
|
|
# aarch64 ghc865Binary gets SEGVs due to haskell#15449 or similar
|
2021-09-19 15:08:51 +02:00
|
|
|
# the oldest ghc with aarch64-darwin support is 8.10.5
|
2021-08-23 17:21:32 +02:00
|
|
|
# Musl bindists do not exist for ghc 8.6.5, so we use 8.10.* for them
|
2021-09-23 15:52:48 +02:00
|
|
|
if stdenv.isAarch64 || stdenv.isAarch32 then
|
2021-09-19 15:08:51 +02:00
|
|
|
packages.ghc8107BinaryMinimal
|
2021-02-11 07:43:09 +01:00
|
|
|
else
|
2021-09-23 15:52:48 +02:00
|
|
|
packages.ghc8107Binary;
|
2021-02-11 07:43:09 +01:00
|
|
|
inherit (buildPackages.python3Packages) sphinx;
|
2021-06-06 12:43:36 +02:00
|
|
|
# Need to use apple's patched xattr until
|
|
|
|
# https://github.com/xattr/xattr/issues/44 and
|
|
|
|
# https://github.com/xattr/xattr/issues/55 are solved.
|
2021-08-24 17:17:07 +02:00
|
|
|
inherit (buildPackages.darwin) xattr autoSignDarwinBinariesHook;
|
2021-02-11 07:43:09 +01:00
|
|
|
buildLlvmPackages = buildPackages.llvmPackages_9;
|
|
|
|
llvmPackages = pkgs.llvmPackages_9;
|
2021-07-26 12:33:18 +02:00
|
|
|
};
|
|
|
|
ghc901 = callPackage ../development/compilers/ghc/9.0.1.nix {
|
2021-09-19 15:08:51 +02:00
|
|
|
bootPkgs =
|
|
|
|
# aarch64 ghc8107Binary exceeds max output size on hydra
|
|
|
|
# the oldest ghc with aarch64-darwin support is 8.10.5
|
|
|
|
if stdenv.isAarch64 || stdenv.isAarch32 then
|
2021-08-29 15:29:27 +02:00
|
|
|
packages.ghc8107BinaryMinimal
|
2021-05-07 15:13:37 +02:00
|
|
|
else
|
2021-09-19 15:08:51 +02:00
|
|
|
packages.ghc8107Binary;
|
2020-09-29 11:50:36 +02:00
|
|
|
inherit (buildPackages.python3Packages) sphinx;
|
2021-11-08 23:51:53 +01:00
|
|
|
inherit (buildPackages.darwin) autoSignDarwinBinariesHook;
|
2020-09-29 11:50:36 +02:00
|
|
|
buildLlvmPackages = buildPackages.llvmPackages_10;
|
|
|
|
llvmPackages = pkgs.llvmPackages_10;
|
2021-07-26 12:33:18 +02:00
|
|
|
};
|
2021-05-31 00:24:21 +02:00
|
|
|
ghc921 = callPackage ../development/compilers/ghc/9.2.1.nix {
|
2021-09-19 15:08:51 +02:00
|
|
|
bootPkgs =
|
|
|
|
# aarch64 ghc8107Binary exceeds max output size on hydra
|
|
|
|
if stdenv.isAarch64 || stdenv.isAarch32 then
|
|
|
|
packages.ghc8107BinaryMinimal
|
2021-08-23 19:12:24 +02:00
|
|
|
else
|
2021-09-19 15:08:51 +02:00
|
|
|
packages.ghc8107Binary;
|
2021-05-31 00:24:21 +02:00
|
|
|
inherit (buildPackages.python3Packages) sphinx;
|
2021-08-28 14:30:25 +02:00
|
|
|
# Need to use apple's patched xattr until
|
|
|
|
# https://github.com/xattr/xattr/issues/44 and
|
|
|
|
# https://github.com/xattr/xattr/issues/55 are solved.
|
2021-11-08 23:44:35 +01:00
|
|
|
inherit (buildPackages.darwin) xattr autoSignDarwinBinariesHook;
|
2021-05-31 00:24:21 +02:00
|
|
|
buildLlvmPackages = buildPackages.llvmPackages_10;
|
|
|
|
llvmPackages = pkgs.llvmPackages_10;
|
|
|
|
};
|
2021-07-26 12:33:18 +02:00
|
|
|
ghcHEAD = callPackage ../development/compilers/ghc/head.nix {
|
2021-11-15 20:59:27 +01:00
|
|
|
bootPkgs = packages.ghc8107Binary;
|
2018-11-22 05:51:57 +01:00
|
|
|
inherit (buildPackages.python3Packages) sphinx;
|
2021-08-28 14:29:24 +02:00
|
|
|
# Need to use apple's patched xattr until
|
|
|
|
# https://github.com/xattr/xattr/issues/44 and
|
|
|
|
# https://github.com/xattr/xattr/issues/55 are solved.
|
2021-11-08 23:57:26 +01:00
|
|
|
inherit (buildPackages.darwin) xattr autoSignDarwinBinariesHook;
|
2020-05-05 18:52:15 +02:00
|
|
|
buildLlvmPackages = buildPackages.llvmPackages_10;
|
|
|
|
llvmPackages = pkgs.llvmPackages_10;
|
2020-04-11 09:41:22 +02:00
|
|
|
libffi = pkgs.libffi;
|
2021-07-26 12:33:18 +02:00
|
|
|
};
|
2015-05-15 15:25:53 +02:00
|
|
|
|
2021-08-25 12:55:30 +02:00
|
|
|
ghcjs = compiler.ghcjs810;
|
|
|
|
ghcjs810 = callPackage ../development/compilers/ghcjs/8.10 {
|
|
|
|
bootPkgs = packages.ghc8107;
|
|
|
|
ghcjsSrcJson = ../development/compilers/ghcjs/8.10/git.json;
|
|
|
|
stage0 = ../development/compilers/ghcjs/8.10/stage0.nix;
|
|
|
|
};
|
|
|
|
|
2017-01-25 00:00:54 +01:00
|
|
|
# The integer-simple attribute set contains all the GHC compilers
|
|
|
|
# build with integer-simple instead of integer-gmp.
|
2017-02-02 17:44:11 +01:00
|
|
|
integer-simple = let
|
|
|
|
integerSimpleGhcNames = pkgs.lib.filter
|
|
|
|
(name: ! builtins.elem name integerSimpleExcludes)
|
|
|
|
(pkgs.lib.attrNames compiler);
|
|
|
|
in pkgs.recurseIntoAttrs (pkgs.lib.genAttrs
|
|
|
|
integerSimpleGhcNames
|
2019-08-13 23:52:01 +02:00
|
|
|
(name: compiler.${name}.override { enableIntegerSimple = true; }));
|
2020-06-19 11:06:42 +02:00
|
|
|
|
|
|
|
# Starting from GHC 9, integer-{simple,gmp} is replaced by ghc-bignum
|
|
|
|
# with "native" and "gmp" backends.
|
|
|
|
native-bignum = let
|
|
|
|
nativeBignumGhcNames = pkgs.lib.filter
|
|
|
|
(name: builtins.elem name nativeBignumIncludes)
|
|
|
|
(pkgs.lib.attrNames compiler);
|
|
|
|
in pkgs.recurseIntoAttrs (pkgs.lib.genAttrs
|
|
|
|
nativeBignumGhcNames
|
|
|
|
(name: compiler.${name}.override { enableNativeBignum = true; }));
|
2014-06-09 10:31:29 +02:00
|
|
|
};
|
2014-05-30 03:00:04 +02:00
|
|
|
|
2018-04-21 19:37:49 +02:00
|
|
|
# Default overrides that are applied to all package sets.
|
|
|
|
packageOverrides = self : super : {};
|
|
|
|
|
2017-02-02 17:44:11 +01:00
|
|
|
# Always get compilers from `buildPackages`
|
2018-01-04 22:18:02 +01:00
|
|
|
packages = let bh = buildPackages.haskell; in {
|
2014-02-08 21:16:43 +01:00
|
|
|
|
2020-03-18 11:10:31 +01:00
|
|
|
ghc865Binary = callPackage ../development/haskell-modules {
|
|
|
|
buildHaskellPackages = bh.packages.ghc865Binary;
|
|
|
|
ghc = bh.compiler.ghc865Binary;
|
2019-01-24 15:01:40 +01:00
|
|
|
compilerConfig = callPackage ../development/haskell-modules/configuration-ghc-8.6.x.nix { };
|
|
|
|
packageSetConfig = bootstrapPackageSet;
|
|
|
|
};
|
2020-09-24 12:25:27 +02:00
|
|
|
ghc8102Binary = callPackage ../development/haskell-modules {
|
|
|
|
buildHaskellPackages = bh.packages.ghc8102Binary;
|
|
|
|
ghc = bh.compiler.ghc8102Binary;
|
|
|
|
compilerConfig = callPackage ../development/haskell-modules/configuration-ghc-8.10.x.nix { };
|
|
|
|
packageSetConfig = bootstrapPackageSet;
|
|
|
|
};
|
2020-11-03 10:18:21 +01:00
|
|
|
ghc8102BinaryMinimal = callPackage ../development/haskell-modules {
|
|
|
|
buildHaskellPackages = bh.packages.ghc8102BinaryMinimal;
|
|
|
|
ghc = bh.compiler.ghc8102BinaryMinimal;
|
|
|
|
compilerConfig = callPackage ../development/haskell-modules/configuration-ghc-8.10.x.nix { };
|
|
|
|
packageSetConfig = bootstrapPackageSet;
|
|
|
|
};
|
2021-08-29 15:29:27 +02:00
|
|
|
ghc8107Binary = callPackage ../development/haskell-modules {
|
|
|
|
buildHaskellPackages = bh.packages.ghc8107Binary;
|
|
|
|
ghc = bh.compiler.ghc8107Binary;
|
2021-08-23 17:21:32 +02:00
|
|
|
compilerConfig = callPackage ../development/haskell-modules/configuration-ghc-8.10.x.nix { };
|
|
|
|
packageSetConfig = bootstrapPackageSet;
|
|
|
|
};
|
2021-08-29 15:29:27 +02:00
|
|
|
ghc8107BinaryMinimal = callPackage ../development/haskell-modules {
|
|
|
|
buildHaskellPackages = bh.packages.ghc8107BinaryMinimal;
|
|
|
|
ghc = bh.compiler.ghc8107BinaryMinimal;
|
2021-08-23 17:21:32 +02:00
|
|
|
compilerConfig = callPackage ../development/haskell-modules/configuration-ghc-8.10.x.nix { };
|
|
|
|
packageSetConfig = bootstrapPackageSet;
|
|
|
|
};
|
2020-07-17 16:57:01 +02:00
|
|
|
ghc884 = callPackage ../development/haskell-modules {
|
|
|
|
buildHaskellPackages = bh.packages.ghc884;
|
|
|
|
ghc = bh.compiler.ghc884;
|
|
|
|
compilerConfig = callPackage ../development/haskell-modules/configuration-ghc-8.8.x.nix { };
|
|
|
|
};
|
2021-08-27 00:36:49 +02:00
|
|
|
ghc8107 = callPackage ../development/haskell-modules {
|
|
|
|
buildHaskellPackages = bh.packages.ghc8107;
|
|
|
|
ghc = bh.compiler.ghc8107;
|
2021-02-11 07:43:09 +01:00
|
|
|
compilerConfig = callPackage ../development/haskell-modules/configuration-ghc-8.10.x.nix { };
|
|
|
|
};
|
2020-09-29 11:50:36 +02:00
|
|
|
ghc901 = callPackage ../development/haskell-modules {
|
|
|
|
buildHaskellPackages = bh.packages.ghc901;
|
|
|
|
ghc = bh.compiler.ghc901;
|
|
|
|
compilerConfig = callPackage ../development/haskell-modules/configuration-ghc-9.0.x.nix { };
|
|
|
|
};
|
2021-05-31 00:24:21 +02:00
|
|
|
ghc921 = callPackage ../development/haskell-modules {
|
|
|
|
buildHaskellPackages = bh.packages.ghc921;
|
|
|
|
ghc = bh.compiler.ghc921;
|
|
|
|
compilerConfig = callPackage ../development/haskell-modules/configuration-ghc-9.2.x.nix { };
|
|
|
|
};
|
2017-09-29 15:11:26 +02:00
|
|
|
ghcHEAD = callPackage ../development/haskell-modules {
|
2018-01-04 22:18:02 +01:00
|
|
|
buildHaskellPackages = bh.packages.ghcHEAD;
|
|
|
|
ghc = bh.compiler.ghcHEAD;
|
2015-09-16 09:19:56 +02:00
|
|
|
compilerConfig = callPackage ../development/haskell-modules/configuration-ghc-head.nix { };
|
2015-04-19 18:47:45 +02:00
|
|
|
};
|
2015-09-16 09:19:56 +02:00
|
|
|
|
2021-08-25 12:55:30 +02:00
|
|
|
ghcjs = packages.ghcjs810;
|
|
|
|
ghcjs810 = callPackage ../development/haskell-modules rec {
|
|
|
|
buildHaskellPackages = ghc.bootPkgs;
|
|
|
|
ghc = bh.compiler.ghcjs810;
|
|
|
|
compilerConfig = callPackage ../development/haskell-modules/configuration-ghc-8.10.x.nix { };
|
|
|
|
packageSetConfig = callPackage ../development/haskell-modules/configuration-ghcjs.nix { };
|
|
|
|
};
|
|
|
|
|
2017-01-25 00:00:54 +01:00
|
|
|
# The integer-simple attribute set contains package sets for all the GHC compilers
|
|
|
|
# using integer-simple instead of integer-gmp.
|
2017-02-02 17:44:11 +01:00
|
|
|
integer-simple = let
|
|
|
|
integerSimpleGhcNames = pkgs.lib.filter
|
|
|
|
(name: ! builtins.elem name integerSimpleExcludes)
|
|
|
|
(pkgs.lib.attrNames packages);
|
2019-08-13 23:52:01 +02:00
|
|
|
in pkgs.lib.genAttrs integerSimpleGhcNames (name: packages.${name}.override {
|
|
|
|
ghc = bh.compiler.integer-simple.${name};
|
|
|
|
buildHaskellPackages = bh.packages.integer-simple.${name};
|
2017-02-02 17:44:11 +01:00
|
|
|
overrides = _self : _super : {
|
|
|
|
integer-simple = null;
|
|
|
|
integer-gmp = null;
|
|
|
|
};
|
2017-01-25 00:00:54 +01:00
|
|
|
});
|
|
|
|
|
2020-06-19 11:06:42 +02:00
|
|
|
native-bignum = let
|
|
|
|
nativeBignumGhcNames = pkgs.lib.filter
|
|
|
|
(name: builtins.elem name nativeBignumIncludes)
|
|
|
|
(pkgs.lib.attrNames compiler);
|
|
|
|
in pkgs.lib.genAttrs nativeBignumGhcNames (name: packages.${name}.override {
|
|
|
|
ghc = bh.compiler.native-bignum.${name};
|
|
|
|
buildHaskellPackages = bh.packages.native-bignum.${name};
|
|
|
|
overrides = _self : _super : {
|
|
|
|
integer-gmp = null;
|
|
|
|
};
|
|
|
|
});
|
2015-04-19 18:47:45 +02:00
|
|
|
};
|
2015-01-08 15:38:47 +01:00
|
|
|
}
|