2021-11-24 13:48:37 +01:00
|
|
|
{ buildPackages, pkgsBuildTarget, 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"
|
2021-08-29 15:29:27 +02:00
|
|
|
"ghc8107Binary"
|
2022-09-26 16:15:08 +02:00
|
|
|
"ghc924Binary"
|
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"
|
2022-01-26 12:01:05 +01:00
|
|
|
"ghc902"
|
2022-09-20 03:37:03 +02:00
|
|
|
"ghc90"
|
2022-07-28 17:26:51 +02:00
|
|
|
"ghc924"
|
2022-11-07 15:25:37 +01:00
|
|
|
"ghc925"
|
2023-02-11 18:06:36 +01:00
|
|
|
"ghc926"
|
2023-02-28 23:16:54 +01:00
|
|
|
"ghc927"
|
2023-05-27 10:18:10 +02:00
|
|
|
"ghc928"
|
2022-09-20 03:37:03 +02:00
|
|
|
"ghc92"
|
2022-11-09 01:42:43 +01:00
|
|
|
"ghc942"
|
2022-11-04 15:17:07 +01:00
|
|
|
"ghc943"
|
2022-12-25 19:09:08 +01:00
|
|
|
"ghc944"
|
2023-04-20 17:50:25 +02:00
|
|
|
"ghc945"
|
2023-08-08 12:19:53 +02:00
|
|
|
"ghc946"
|
2022-09-20 03:37:03 +02:00
|
|
|
"ghc94"
|
2023-01-15 21:23:21 +01:00
|
|
|
"ghc96"
|
2023-05-26 09:47:26 +02:00
|
|
|
"ghc962"
|
2020-06-19 11:06:42 +02:00
|
|
|
"ghcHEAD"
|
|
|
|
];
|
|
|
|
|
|
|
|
nativeBignumIncludes = [
|
2022-09-20 03:37:03 +02:00
|
|
|
"ghc90"
|
2022-09-21 17:10:59 +02:00
|
|
|
"ghc902"
|
2022-09-20 03:37:03 +02:00
|
|
|
"ghc92"
|
2022-09-21 17:10:59 +02:00
|
|
|
"ghc924"
|
2022-11-07 15:25:37 +01:00
|
|
|
"ghc925"
|
2023-02-11 18:06:36 +01:00
|
|
|
"ghc926"
|
2023-02-28 23:16:54 +01:00
|
|
|
"ghc927"
|
2023-05-27 10:18:10 +02:00
|
|
|
"ghc928"
|
2022-09-20 03:37:03 +02:00
|
|
|
"ghc94"
|
2022-11-09 01:42:43 +01:00
|
|
|
"ghc942"
|
2022-11-04 15:17:07 +01:00
|
|
|
"ghc943"
|
2022-12-25 19:09:08 +01:00
|
|
|
"ghc944"
|
2023-04-20 17:50:25 +02:00
|
|
|
"ghc945"
|
2023-08-08 12:19:53 +02:00
|
|
|
"ghc946"
|
2023-01-15 21:23:21 +01:00
|
|
|
"ghc96"
|
2023-05-26 09:47:26 +02:00
|
|
|
"ghc962"
|
2020-06-19 11:06:42 +02:00
|
|
|
"ghcHEAD"
|
2017-08-01 18:44:08 +02:00
|
|
|
];
|
|
|
|
|
2022-01-22 21:38:03 +01:00
|
|
|
haskellLibUncomposable = import ../development/haskell-modules/lib {
|
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 {};
|
|
|
|
|
2023-06-29 09:53:48 +02:00
|
|
|
compiler = {
|
2021-11-23 16:12:48 +01:00
|
|
|
ghc865Binary = callPackage ../development/compilers/ghc/8.6.5-binary.nix {
|
|
|
|
llvmPackages = pkgs.llvmPackages_6;
|
|
|
|
};
|
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;
|
|
|
|
};
|
|
|
|
|
2021-08-29 15:29:27 +02:00
|
|
|
ghc8107Binary = callPackage ../development/compilers/ghc/8.10.7-binary.nix {
|
2021-11-23 16:21:32 +01:00
|
|
|
llvmPackages = pkgs.llvmPackages_12;
|
2021-08-23 17:21:32 +02:00
|
|
|
};
|
|
|
|
|
2022-09-26 16:15:08 +02:00
|
|
|
ghc924Binary = callPackage ../development/compilers/ghc/9.2.4-binary.nix {
|
2022-04-09 16:23:59 +02:00
|
|
|
llvmPackages = pkgs.llvmPackages_12;
|
|
|
|
};
|
|
|
|
|
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
|
2022-04-19 12:02:01 +02:00
|
|
|
# 8.10.2 is needed as using 8.10.7 is broken due to RTS-incompatibilities
|
|
|
|
# Musl bindists do not exist for ghc 8.6.5, so we use 8.10.* for them
|
2023-06-24 11:59:20 +02:00
|
|
|
if stdenv.hostPlatform.isAarch64 || stdenv.hostPlatform.isMusl then
|
2022-04-19 12:02:01 +02:00
|
|
|
packages.ghc8102Binary
|
2020-10-19 20:32:49 +02:00
|
|
|
else
|
|
|
|
packages.ghc865Binary;
|
2022-06-29 02:48:12 +02:00
|
|
|
inherit (buildPackages.python3Packages) sphinx;
|
2021-11-24 13:48:37 +01:00
|
|
|
buildTargetLlvmPackages = pkgsBuildTarget.llvmPackages_7;
|
2020-07-17 16:57:01 +02:00
|
|
|
llvmPackages = pkgs.llvmPackages_7;
|
2021-07-26 12:33:18 +02:00
|
|
|
};
|
2023-06-29 09:53:48 +02:00
|
|
|
ghc88 = compiler.ghc884;
|
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 =
|
|
|
|
# the oldest ghc with aarch64-darwin support is 8.10.5
|
2023-06-24 11:59:20 +02:00
|
|
|
if stdenv.hostPlatform.isPower64 && stdenv.hostPlatform.isLittleEndian then
|
2022-07-01 13:05:30 +02:00
|
|
|
# to my (@a-m-joseph) knowledge there are no newer official binaries for this platform
|
|
|
|
packages.ghc865Binary
|
2021-02-11 07:43:09 +01:00
|
|
|
else
|
2021-09-23 15:52:48 +02:00
|
|
|
packages.ghc8107Binary;
|
2022-06-29 02:48:12 +02: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-11-25 09:28:37 +01:00
|
|
|
buildTargetLlvmPackages = pkgsBuildTarget.llvmPackages_12;
|
2021-11-23 16:21:32 +01:00
|
|
|
llvmPackages = pkgs.llvmPackages_12;
|
2021-07-26 12:33:18 +02:00
|
|
|
};
|
2023-06-29 09:53:48 +02:00
|
|
|
ghc810 = compiler.ghc8107;
|
2021-12-25 21:48:15 +01:00
|
|
|
ghc902 = callPackage ../development/compilers/ghc/9.0.2.nix {
|
2021-09-19 15:08:51 +02:00
|
|
|
bootPkgs =
|
|
|
|
# the oldest ghc with aarch64-darwin support is 8.10.5
|
2023-06-24 11:59:20 +02:00
|
|
|
if stdenv.hostPlatform.isPower64 && stdenv.hostPlatform.isLittleEndian then
|
2022-09-20 03:37:03 +02:00
|
|
|
packages.ghc810
|
2021-05-07 15:13:37 +02:00
|
|
|
else
|
2021-09-19 15:08:51 +02:00
|
|
|
packages.ghc8107Binary;
|
2022-06-29 02:48:12 +02:00
|
|
|
inherit (buildPackages.python3Packages) sphinx;
|
2021-12-25 21:48:15 +01:00
|
|
|
inherit (buildPackages.darwin) autoSignDarwinBinariesHook xattr;
|
2022-02-02 09:15:48 +01:00
|
|
|
buildTargetLlvmPackages = pkgsBuildTarget.llvmPackages_12;
|
|
|
|
llvmPackages = pkgs.llvmPackages_12;
|
2021-07-26 12:33:18 +02:00
|
|
|
};
|
2023-06-29 09:53:48 +02:00
|
|
|
ghc90 = compiler.ghc902;
|
2022-07-28 17:26:51 +02:00
|
|
|
ghc924 = callPackage ../development/compilers/ghc/9.2.4.nix {
|
2021-09-19 15:08:51 +02:00
|
|
|
bootPkgs =
|
2023-06-24 11:59:20 +02:00
|
|
|
if stdenv.hostPlatform.isPower64 && stdenv.hostPlatform.isLittleEndian then
|
2022-09-20 03:37:03 +02:00
|
|
|
packages.ghc810
|
2021-08-23 19:12:24 +02:00
|
|
|
else
|
2021-09-19 15:08:51 +02:00
|
|
|
packages.ghc8107Binary;
|
2022-06-29 02:48:12 +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-11-25 09:28:37 +01:00
|
|
|
buildTargetLlvmPackages = pkgsBuildTarget.llvmPackages_12;
|
2021-11-23 16:21:32 +01:00
|
|
|
llvmPackages = pkgs.llvmPackages_12;
|
2021-05-31 00:24:21 +02:00
|
|
|
};
|
2022-11-07 15:25:37 +01:00
|
|
|
ghc925 = callPackage ../development/compilers/ghc/9.2.5.nix {
|
|
|
|
bootPkgs =
|
2023-06-24 11:59:20 +02:00
|
|
|
if stdenv.hostPlatform.isPower64 && stdenv.hostPlatform.isLittleEndian then
|
2022-11-07 15:25:37 +01:00
|
|
|
packages.ghc810
|
|
|
|
else
|
|
|
|
packages.ghc8107Binary;
|
|
|
|
inherit (buildPackages.python3Packages) sphinx;
|
|
|
|
# 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.
|
|
|
|
inherit (buildPackages.darwin) xattr autoSignDarwinBinariesHook;
|
|
|
|
buildTargetLlvmPackages = pkgsBuildTarget.llvmPackages_12;
|
|
|
|
llvmPackages = pkgs.llvmPackages_12;
|
|
|
|
};
|
2023-02-11 18:06:36 +01:00
|
|
|
ghc926 = callPackage ../development/compilers/ghc/9.2.6.nix {
|
|
|
|
bootPkgs =
|
2023-06-24 11:59:20 +02:00
|
|
|
if stdenv.hostPlatform.isPower64 && stdenv.hostPlatform.isLittleEndian then
|
2023-02-11 18:06:36 +01:00
|
|
|
packages.ghc810
|
|
|
|
else
|
|
|
|
packages.ghc8107Binary;
|
|
|
|
inherit (buildPackages.python3Packages) sphinx;
|
|
|
|
# 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.
|
|
|
|
inherit (buildPackages.darwin) xattr autoSignDarwinBinariesHook;
|
|
|
|
buildTargetLlvmPackages = pkgsBuildTarget.llvmPackages_12;
|
|
|
|
llvmPackages = pkgs.llvmPackages_12;
|
|
|
|
};
|
2023-02-28 23:16:54 +01:00
|
|
|
ghc927 = callPackage ../development/compilers/ghc/9.2.7.nix {
|
|
|
|
bootPkgs =
|
2023-06-24 11:59:20 +02:00
|
|
|
if stdenv.hostPlatform.isPower64 && stdenv.hostPlatform.isLittleEndian then
|
2023-02-28 23:16:54 +01:00
|
|
|
packages.ghc810
|
|
|
|
else
|
|
|
|
packages.ghc8107Binary;
|
|
|
|
inherit (buildPackages.python3Packages) sphinx;
|
|
|
|
# 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.
|
|
|
|
inherit (buildPackages.darwin) xattr autoSignDarwinBinariesHook;
|
|
|
|
buildTargetLlvmPackages = pkgsBuildTarget.llvmPackages_12;
|
|
|
|
llvmPackages = pkgs.llvmPackages_12;
|
|
|
|
};
|
2023-05-27 10:18:10 +02:00
|
|
|
ghc928 = callPackage ../development/compilers/ghc/9.2.8.nix {
|
|
|
|
bootPkgs =
|
2023-06-24 11:59:20 +02:00
|
|
|
if stdenv.hostPlatform.isPower64 && stdenv.hostPlatform.isLittleEndian then
|
2023-05-27 10:18:10 +02:00
|
|
|
packages.ghc810
|
|
|
|
else
|
|
|
|
packages.ghc8107Binary;
|
|
|
|
inherit (buildPackages.python3Packages) sphinx;
|
|
|
|
# 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.
|
|
|
|
inherit (buildPackages.darwin) xattr autoSignDarwinBinariesHook;
|
|
|
|
buildTargetLlvmPackages = pkgsBuildTarget.llvmPackages_12;
|
|
|
|
llvmPackages = pkgs.llvmPackages_12;
|
|
|
|
};
|
2023-06-29 09:53:48 +02:00
|
|
|
ghc92 = compiler.ghc928;
|
2022-11-09 01:42:43 +01:00
|
|
|
ghc942 = callPackage ../development/compilers/ghc/9.4.2.nix {
|
|
|
|
bootPkgs =
|
|
|
|
# Building with 9.2 is broken due to
|
|
|
|
# https://gitlab.haskell.org/ghc/ghc/-/issues/21914
|
|
|
|
# Use 8.10 as a workaround where possible to keep bootstrap path short.
|
|
|
|
|
|
|
|
# On ARM text won't build with GHC 8.10.*
|
|
|
|
if stdenv.hostPlatform.isAarch then
|
|
|
|
# TODO(@sternenseemann): package bindist
|
|
|
|
packages.ghc902
|
|
|
|
# No suitable bindists for powerpc64le
|
|
|
|
else if stdenv.hostPlatform.isPower64 && stdenv.hostPlatform.isLittleEndian then
|
|
|
|
packages.ghc902
|
|
|
|
else
|
|
|
|
packages.ghc8107Binary;
|
|
|
|
inherit (buildPackages.python3Packages) sphinx;
|
|
|
|
# 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.
|
|
|
|
inherit (buildPackages.darwin) xattr autoSignDarwinBinariesHook;
|
|
|
|
# Support range >= 10 && < 14
|
|
|
|
buildTargetLlvmPackages = pkgsBuildTarget.llvmPackages_12;
|
|
|
|
llvmPackages = pkgs.llvmPackages_12;
|
|
|
|
};
|
2022-11-04 15:17:07 +01:00
|
|
|
ghc943 = callPackage ../development/compilers/ghc/9.4.3.nix {
|
2022-07-24 12:08:58 +02:00
|
|
|
bootPkgs =
|
2022-08-14 17:33:45 +02:00
|
|
|
# Building with 9.2 is broken due to
|
2022-07-24 12:08:58 +02:00
|
|
|
# https://gitlab.haskell.org/ghc/ghc/-/issues/21914
|
2022-08-14 17:33:45 +02:00
|
|
|
# Use 8.10 as a workaround where possible to keep bootstrap path short.
|
|
|
|
|
|
|
|
# On ARM text won't build with GHC 8.10.*
|
2022-08-13 18:49:57 +02:00
|
|
|
if stdenv.hostPlatform.isAarch then
|
2022-08-14 17:33:45 +02:00
|
|
|
# TODO(@sternenseemann): package bindist
|
|
|
|
packages.ghc902
|
|
|
|
# No suitable bindists for powerpc64le
|
2022-08-13 18:49:57 +02:00
|
|
|
else if stdenv.hostPlatform.isPower64 && stdenv.hostPlatform.isLittleEndian then
|
2022-08-14 17:33:45 +02:00
|
|
|
packages.ghc902
|
2022-08-13 18:49:57 +02:00
|
|
|
else
|
|
|
|
packages.ghc8107Binary;
|
2022-07-24 12:08:58 +02:00
|
|
|
inherit (buildPackages.python3Packages) sphinx;
|
|
|
|
# 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.
|
|
|
|
inherit (buildPackages.darwin) xattr autoSignDarwinBinariesHook;
|
|
|
|
# Support range >= 10 && < 14
|
|
|
|
buildTargetLlvmPackages = pkgsBuildTarget.llvmPackages_12;
|
|
|
|
llvmPackages = pkgs.llvmPackages_12;
|
|
|
|
};
|
2022-12-25 19:09:08 +01:00
|
|
|
ghc944 = callPackage ../development/compilers/ghc/9.4.4.nix {
|
|
|
|
bootPkgs =
|
|
|
|
# Building with 9.2 is broken due to
|
|
|
|
# https://gitlab.haskell.org/ghc/ghc/-/issues/21914
|
|
|
|
# Use 8.10 as a workaround where possible to keep bootstrap path short.
|
|
|
|
|
|
|
|
# On ARM text won't build with GHC 8.10.*
|
|
|
|
if stdenv.hostPlatform.isAarch then
|
|
|
|
# TODO(@sternenseemann): package bindist
|
|
|
|
packages.ghc902
|
|
|
|
# No suitable bindists for powerpc64le
|
|
|
|
else if stdenv.hostPlatform.isPower64 && stdenv.hostPlatform.isLittleEndian then
|
|
|
|
packages.ghc902
|
|
|
|
else
|
|
|
|
packages.ghc8107Binary;
|
|
|
|
inherit (buildPackages.python3Packages) sphinx;
|
|
|
|
# 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.
|
|
|
|
inherit (buildPackages.darwin) xattr autoSignDarwinBinariesHook;
|
|
|
|
# Support range >= 10 && < 14
|
|
|
|
buildTargetLlvmPackages = pkgsBuildTarget.llvmPackages_12;
|
|
|
|
llvmPackages = pkgs.llvmPackages_12;
|
|
|
|
};
|
2023-04-20 17:50:25 +02:00
|
|
|
ghc945 = callPackage ../development/compilers/ghc/9.4.5.nix {
|
|
|
|
bootPkgs =
|
|
|
|
# Building with 9.2 is broken due to
|
|
|
|
# https://gitlab.haskell.org/ghc/ghc/-/issues/21914
|
|
|
|
# Use 8.10 as a workaround where possible to keep bootstrap path short.
|
|
|
|
|
|
|
|
# On ARM text won't build with GHC 8.10.*
|
|
|
|
if stdenv.hostPlatform.isAarch then
|
|
|
|
# TODO(@sternenseemann): package bindist
|
|
|
|
packages.ghc902
|
|
|
|
# No suitable bindists for powerpc64le
|
|
|
|
else if stdenv.hostPlatform.isPower64 && stdenv.hostPlatform.isLittleEndian then
|
|
|
|
packages.ghc902
|
|
|
|
else
|
|
|
|
packages.ghc8107Binary;
|
|
|
|
inherit (buildPackages.python3Packages) sphinx;
|
|
|
|
# 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.
|
|
|
|
inherit (buildPackages.darwin) xattr autoSignDarwinBinariesHook;
|
|
|
|
# Support range >= 10 && < 14
|
|
|
|
buildTargetLlvmPackages = pkgsBuildTarget.llvmPackages_12;
|
|
|
|
llvmPackages = pkgs.llvmPackages_12;
|
|
|
|
};
|
2023-08-08 12:19:53 +02:00
|
|
|
ghc946 = callPackage ../development/compilers/ghc/9.4.6.nix {
|
|
|
|
bootPkgs =
|
|
|
|
# Building with 9.2 is broken due to
|
|
|
|
# https://gitlab.haskell.org/ghc/ghc/-/issues/21914
|
|
|
|
# Use 8.10 as a workaround where possible to keep bootstrap path short.
|
|
|
|
|
|
|
|
# On ARM text won't build with GHC 8.10.*
|
|
|
|
if stdenv.hostPlatform.isAarch then
|
|
|
|
# TODO(@sternenseemann): package bindist
|
|
|
|
packages.ghc902
|
|
|
|
# No suitable bindists for powerpc64le
|
|
|
|
else if stdenv.hostPlatform.isPower64 && stdenv.hostPlatform.isLittleEndian then
|
|
|
|
packages.ghc902
|
|
|
|
else
|
|
|
|
packages.ghc8107Binary;
|
|
|
|
inherit (buildPackages.python3Packages) sphinx;
|
|
|
|
# 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.
|
|
|
|
inherit (buildPackages.darwin) xattr autoSignDarwinBinariesHook;
|
|
|
|
# Support range >= 10 && < 14
|
|
|
|
buildTargetLlvmPackages = pkgsBuildTarget.llvmPackages_12;
|
|
|
|
llvmPackages = pkgs.llvmPackages_12;
|
|
|
|
};
|
2023-08-08 16:29:20 +02:00
|
|
|
ghc94 = compiler.ghc946;
|
2023-05-26 09:47:26 +02:00
|
|
|
ghc962 = callPackage ../development/compilers/ghc/9.6.2.nix {
|
|
|
|
bootPkgs =
|
|
|
|
# For GHC 9.2 no armv7l bindists are available.
|
|
|
|
if stdenv.hostPlatform.isAarch32 then
|
|
|
|
packages.ghc924
|
|
|
|
else if stdenv.hostPlatform.isPower64 && stdenv.hostPlatform.isLittleEndian then
|
|
|
|
packages.ghc924
|
|
|
|
else
|
|
|
|
packages.ghc924Binary;
|
|
|
|
inherit (buildPackages.python3Packages) sphinx;
|
|
|
|
# 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.
|
|
|
|
inherit (buildPackages.darwin) xattr autoSignDarwinBinariesHook;
|
|
|
|
# Support range >= 11 && < 16
|
|
|
|
buildTargetLlvmPackages = pkgsBuildTarget.llvmPackages_15;
|
|
|
|
llvmPackages = pkgs.llvmPackages_15;
|
|
|
|
};
|
2023-06-29 09:53:48 +02:00
|
|
|
ghc96 = compiler.ghc962;
|
2021-07-26 12:33:18 +02:00
|
|
|
ghcHEAD = callPackage ../development/compilers/ghc/head.nix {
|
2022-07-01 13:05:30 +02:00
|
|
|
bootPkgs =
|
2022-11-07 15:25:37 +01:00
|
|
|
# For GHC 9.2 no armv7l bindists are available.
|
2022-09-26 16:15:08 +02:00
|
|
|
if stdenv.hostPlatform.isAarch32 then
|
|
|
|
packages.ghc924
|
2022-05-15 11:40:11 +02:00
|
|
|
else if stdenv.hostPlatform.isPower64 && stdenv.hostPlatform.isLittleEndian then
|
|
|
|
packages.ghc924
|
2022-07-01 13:05:30 +02:00
|
|
|
else
|
2022-09-26 16:15:08 +02:00
|
|
|
packages.ghc924Binary;
|
2022-06-29 02:48:12 +02: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;
|
2023-01-15 21:23:21 +01:00
|
|
|
# 2023-01-15: Support range >= 10 && < 15
|
2023-01-03 22:42:57 +01:00
|
|
|
buildTargetLlvmPackages = pkgsBuildTarget.llvmPackages_14;
|
|
|
|
llvmPackages = pkgs.llvmPackages_14;
|
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 {
|
2022-09-20 03:37:03 +02:00
|
|
|
bootPkgs = packages.ghc810;
|
2021-08-25 12:55:30 +02:00
|
|
|
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`
|
2023-06-29 09:53:48 +02: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;
|
|
|
|
};
|
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;
|
|
|
|
};
|
2022-09-26 16:15:08 +02:00
|
|
|
ghc924Binary = callPackage ../development/haskell-modules {
|
|
|
|
buildHaskellPackages = bh.packages.ghc924Binary;
|
|
|
|
ghc = bh.compiler.ghc924Binary;
|
2022-04-09 16:23:59 +02:00
|
|
|
compilerConfig = callPackage ../development/haskell-modules/configuration-ghc-9.2.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 { };
|
|
|
|
};
|
2023-06-29 09:53:48 +02:00
|
|
|
ghc88 = packages.ghc884;
|
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 { };
|
|
|
|
};
|
2023-06-29 09:53:48 +02:00
|
|
|
ghc810 = packages.ghc8107;
|
2021-12-25 21:48:15 +01:00
|
|
|
ghc902 = callPackage ../development/haskell-modules {
|
|
|
|
buildHaskellPackages = bh.packages.ghc902;
|
|
|
|
ghc = bh.compiler.ghc902;
|
2020-09-29 11:50:36 +02:00
|
|
|
compilerConfig = callPackage ../development/haskell-modules/configuration-ghc-9.0.x.nix { };
|
|
|
|
};
|
2023-06-29 09:53:48 +02:00
|
|
|
ghc90 = packages.ghc902;
|
2022-07-28 17:26:51 +02:00
|
|
|
ghc924 = callPackage ../development/haskell-modules {
|
|
|
|
buildHaskellPackages = bh.packages.ghc924;
|
|
|
|
ghc = bh.compiler.ghc924;
|
2021-05-31 00:24:21 +02:00
|
|
|
compilerConfig = callPackage ../development/haskell-modules/configuration-ghc-9.2.x.nix { };
|
|
|
|
};
|
2022-11-07 15:25:37 +01:00
|
|
|
ghc925 = callPackage ../development/haskell-modules {
|
|
|
|
buildHaskellPackages = bh.packages.ghc925;
|
|
|
|
ghc = bh.compiler.ghc925;
|
|
|
|
compilerConfig = callPackage ../development/haskell-modules/configuration-ghc-9.2.x.nix { };
|
|
|
|
};
|
2023-02-11 18:06:36 +01:00
|
|
|
ghc926 = callPackage ../development/haskell-modules {
|
|
|
|
buildHaskellPackages = bh.packages.ghc926;
|
|
|
|
ghc = bh.compiler.ghc926;
|
|
|
|
compilerConfig = callPackage ../development/haskell-modules/configuration-ghc-9.2.x.nix { };
|
|
|
|
};
|
2023-02-28 23:16:54 +01:00
|
|
|
ghc927 = callPackage ../development/haskell-modules {
|
|
|
|
buildHaskellPackages = bh.packages.ghc927;
|
|
|
|
ghc = bh.compiler.ghc927;
|
|
|
|
compilerConfig = callPackage ../development/haskell-modules/configuration-ghc-9.2.x.nix { };
|
|
|
|
};
|
2023-05-27 10:18:10 +02:00
|
|
|
ghc928 = callPackage ../development/haskell-modules {
|
|
|
|
buildHaskellPackages = bh.packages.ghc928;
|
|
|
|
ghc = bh.compiler.ghc928;
|
|
|
|
compilerConfig = callPackage ../development/haskell-modules/configuration-ghc-9.2.x.nix { };
|
|
|
|
};
|
2023-06-29 09:53:48 +02:00
|
|
|
ghc92 = packages.ghc928;
|
2022-11-09 01:42:43 +01:00
|
|
|
ghc942 = callPackage ../development/haskell-modules {
|
|
|
|
buildHaskellPackages = bh.packages.ghc942;
|
|
|
|
ghc = bh.compiler.ghc942;
|
|
|
|
compilerConfig = callPackage ../development/haskell-modules/configuration-ghc-9.4.x.nix { };
|
|
|
|
};
|
2022-11-04 15:17:07 +01:00
|
|
|
ghc943 = callPackage ../development/haskell-modules {
|
|
|
|
buildHaskellPackages = bh.packages.ghc943;
|
|
|
|
ghc = bh.compiler.ghc943;
|
2022-07-24 12:08:58 +02:00
|
|
|
compilerConfig = callPackage ../development/haskell-modules/configuration-ghc-9.4.x.nix { };
|
|
|
|
};
|
2022-12-25 19:09:08 +01:00
|
|
|
ghc944 = callPackage ../development/haskell-modules {
|
|
|
|
buildHaskellPackages = bh.packages.ghc944;
|
|
|
|
ghc = bh.compiler.ghc944;
|
|
|
|
compilerConfig = callPackage ../development/haskell-modules/configuration-ghc-9.4.x.nix { };
|
|
|
|
};
|
2023-04-20 17:50:25 +02:00
|
|
|
ghc945 = callPackage ../development/haskell-modules {
|
|
|
|
buildHaskellPackages = bh.packages.ghc945;
|
|
|
|
ghc = bh.compiler.ghc945;
|
|
|
|
compilerConfig = callPackage ../development/haskell-modules/configuration-ghc-9.4.x.nix { };
|
|
|
|
};
|
2023-08-08 12:19:53 +02:00
|
|
|
ghc946 = callPackage ../development/haskell-modules {
|
|
|
|
buildHaskellPackages = bh.packages.ghc946;
|
|
|
|
ghc = bh.compiler.ghc946;
|
|
|
|
compilerConfig = callPackage ../development/haskell-modules/configuration-ghc-9.4.x.nix { };
|
|
|
|
};
|
2023-08-08 16:29:20 +02:00
|
|
|
ghc94 = packages.ghc946;
|
2023-05-26 09:47:26 +02:00
|
|
|
ghc962 = callPackage ../development/haskell-modules {
|
|
|
|
buildHaskellPackages = bh.packages.ghc962;
|
|
|
|
ghc = bh.compiler.ghc962;
|
|
|
|
compilerConfig = callPackage ../development/haskell-modules/configuration-ghc-9.6.x.nix { };
|
|
|
|
};
|
2023-06-29 09:53:48 +02:00
|
|
|
ghc96 = packages.ghc962;
|
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;
|
2022-10-01 18:03:10 +02:00
|
|
|
compilerConfig = callPackage ../development/haskell-modules/configuration-ghc-9.8.x.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.
|
2022-04-09 02:56:35 +02:00
|
|
|
integer-simple =
|
|
|
|
let
|
|
|
|
integerSimpleGhcNames = pkgs.lib.filter
|
|
|
|
(name: ! builtins.elem name integerSimpleExcludes)
|
|
|
|
(pkgs.lib.attrNames packages);
|
|
|
|
in
|
|
|
|
pkgs.lib.genAttrs integerSimpleGhcNames
|
|
|
|
(name:
|
|
|
|
packages.${name}.override (oldAttrs: {
|
|
|
|
ghc = bh.compiler.integer-simple.${name};
|
|
|
|
buildHaskellPackages = bh.packages.integer-simple.${name};
|
|
|
|
overrides =
|
|
|
|
pkgs.lib.composeExtensions
|
|
|
|
(oldAttrs.overrides or (_: _: {}))
|
2022-04-12 07:15:05 +02:00
|
|
|
(_: _: { integer-simple = null; });
|
2022-04-09 02:56:35 +02:00
|
|
|
})
|
|
|
|
);
|
2017-01-25 00:00:54 +01:00
|
|
|
|
2022-04-09 02:56:35 +02:00
|
|
|
native-bignum =
|
|
|
|
let
|
|
|
|
nativeBignumGhcNames = pkgs.lib.filter
|
|
|
|
(name: builtins.elem name nativeBignumIncludes)
|
|
|
|
(pkgs.lib.attrNames compiler);
|
|
|
|
in
|
|
|
|
pkgs.lib.genAttrs nativeBignumGhcNames
|
|
|
|
(name:
|
2022-04-12 07:15:05 +02:00
|
|
|
packages.${name}.override {
|
2022-04-09 02:56:35 +02:00
|
|
|
ghc = bh.compiler.native-bignum.${name};
|
|
|
|
buildHaskellPackages = bh.packages.native-bignum.${name};
|
2022-04-12 07:15:05 +02:00
|
|
|
}
|
2022-04-09 02:56:35 +02:00
|
|
|
);
|
2015-04-19 18:47:45 +02:00
|
|
|
};
|
2015-01-08 15:38:47 +01:00
|
|
|
}
|