253 lines
10 KiB
Nix
253 lines
10 KiB
Nix
{
|
||
buildPackages,
|
||
pkgsBuildBuild,
|
||
pkgsBuildTarget,
|
||
pkgs,
|
||
newScope,
|
||
stdenv,
|
||
config,
|
||
}:
|
||
|
||
let
|
||
nativeBignumExcludes = [
|
||
# haskell.compiler sub groups
|
||
"native-bignum"
|
||
# Binary GHCs
|
||
"ghc902Binary"
|
||
"ghc984Binary"
|
||
];
|
||
|
||
haskellLibUncomposable = import ../development/haskell-modules/lib {
|
||
inherit (pkgs) lib;
|
||
inherit pkgs;
|
||
};
|
||
|
||
callPackage = newScope {
|
||
haskellLib = haskellLibUncomposable.compose;
|
||
overrides = pkgs.haskell.packageOverrides;
|
||
};
|
||
|
||
bootstrapPackageSet = self: super: {
|
||
mkDerivation =
|
||
drv:
|
||
super.mkDerivation (
|
||
drv
|
||
// {
|
||
doCheck = false;
|
||
doHaddock = false;
|
||
enableExecutableProfiling = false;
|
||
enableLibraryProfiling = false;
|
||
enableSharedExecutables = false;
|
||
enableSharedLibraries = false;
|
||
}
|
||
);
|
||
};
|
||
|
||
# Use this rather than `rec { ... }` below for sake of overlays.
|
||
inherit (pkgs.haskell) compiler packages;
|
||
|
||
# The GHC LLVM backend rarely sees significant changes relating to
|
||
# LLVM version support, as it uses the textual IR format and invokes
|
||
# the LLVM binary tools rather than linking to the C++ libraries.
|
||
#
|
||
# Consider backporting upstream GHC changes to support new LLVM
|
||
# versions in `common-llvm-patches.nix` to allow the version to be
|
||
# shared across our supported versions of GHC. If the required
|
||
# changes are too invasive, it’s fine to decouple individual versions
|
||
# from this default or disable their LLVM support if it’s not load‐
|
||
# bearing (e.g. GHC 9.4.8 is important for cross‐compiling GHC).
|
||
buildTargetLlvmPackages = pkgsBuildTarget.llvmPackages_20;
|
||
llvmPackages = pkgs.llvmPackages_20;
|
||
|
||
in
|
||
{
|
||
lib = haskellLibUncomposable;
|
||
|
||
package-list = callPackage ../development/haskell-modules/package-list.nix { };
|
||
|
||
# Always get boot compilers from `pkgsBuildBuild`. The boot (stage0) compiler
|
||
# is used to build another compiler (stage1) that'll be used to build the
|
||
# final compiler (stage2) (except when building a cross-compiler). This means
|
||
# that stage1's host platform is the same as stage0: build. Consequently,
|
||
# stage0 needs to be build->build.
|
||
#
|
||
# Note that we use bb.haskell.packages.*. haskell.packages.*.ghc is similar to
|
||
# stdenv: The ghc comes from the previous package set, i.e. this predicate holds:
|
||
# `name: pkgs: pkgs.haskell.packages.${name}.ghc == pkgs.buildPackages.haskell.compiler.${name}.ghc`.
|
||
# This isn't problematic since pkgsBuildBuild.buildPackages is also build->build,
|
||
# just something to keep in mind.
|
||
compiler = pkgs.lib.recurseIntoAttrs (
|
||
let
|
||
bb = pkgsBuildBuild.haskell;
|
||
in
|
||
{
|
||
# Required to bootstrap 9.4.8.
|
||
ghc902Binary = callPackage ../development/compilers/ghc/9.0.2-binary.nix {
|
||
inherit llvmPackages;
|
||
};
|
||
|
||
ghc984Binary = callPackage ../development/compilers/ghc/9.8.4-binary.nix { };
|
||
|
||
ghc948 = callPackage ../development/compilers/ghc/9.4.8.nix {
|
||
bootPkgs =
|
||
# Building with 9.2 is broken due to
|
||
# https://gitlab.haskell.org/ghc/ghc/-/issues/21914 krank:ignore-line
|
||
bb.packages.ghc902Binary;
|
||
inherit (buildPackages.python3Packages) sphinx;
|
||
inherit (buildPackages.darwin) xattr autoSignDarwinBinariesHook;
|
||
inherit buildTargetLlvmPackages llvmPackages;
|
||
};
|
||
ghc94 = compiler.ghc948;
|
||
ghc967 = callPackage ../development/compilers/ghc/9.6.7.nix {
|
||
bootPkgs = bb.packages.ghc948;
|
||
inherit (buildPackages.python3Packages) sphinx;
|
||
inherit (buildPackages.darwin) xattr autoSignDarwinBinariesHook;
|
||
inherit buildTargetLlvmPackages llvmPackages;
|
||
};
|
||
ghc96 = compiler.ghc967;
|
||
ghc984 = callPackage ../development/compilers/ghc/9.8.4.nix {
|
||
bootPkgs = if stdenv.buildPlatform.isi686 then bb.packages.ghc948 else bb.packages.ghc984Binary;
|
||
inherit (buildPackages.python3Packages) sphinx;
|
||
inherit (buildPackages.darwin) xattr autoSignDarwinBinariesHook;
|
||
inherit buildTargetLlvmPackages llvmPackages;
|
||
};
|
||
ghc98 = compiler.ghc984;
|
||
ghc9102 = callPackage ../development/compilers/ghc/9.10.2.nix {
|
||
bootPkgs = if stdenv.buildPlatform.isi686 then bb.packages.ghc967 else bb.packages.ghc984Binary;
|
||
inherit (buildPackages.python3Packages) sphinx;
|
||
inherit (buildPackages.darwin) xattr autoSignDarwinBinariesHook;
|
||
inherit buildTargetLlvmPackages llvmPackages;
|
||
};
|
||
ghc9103 = callPackage ../development/compilers/ghc/9.10.3.nix {
|
||
bootPkgs = if stdenv.buildPlatform.isi686 then bb.packages.ghc967 else bb.packages.ghc984Binary;
|
||
inherit (buildPackages.python3Packages) sphinx;
|
||
inherit (buildPackages.darwin) xattr autoSignDarwinBinariesHook;
|
||
inherit buildTargetLlvmPackages llvmPackages;
|
||
};
|
||
ghc910 = compiler.ghc9103;
|
||
ghc9122 = callPackage ../development/compilers/ghc/9.12.2.nix {
|
||
bootPkgs =
|
||
# No suitable bindist packaged yet
|
||
bb.packages.ghc9103;
|
||
inherit (buildPackages.python3Packages) sphinx;
|
||
inherit (buildPackages.darwin) xattr autoSignDarwinBinariesHook;
|
||
inherit buildTargetLlvmPackages llvmPackages;
|
||
};
|
||
ghc912 = compiler.ghc9122;
|
||
ghcHEAD = callPackage ../development/compilers/ghc/head.nix {
|
||
bootPkgs = bb.packages.ghc984Binary;
|
||
inherit (buildPackages.python3Packages) sphinx;
|
||
inherit (buildPackages.darwin) xattr autoSignDarwinBinariesHook;
|
||
inherit buildTargetLlvmPackages llvmPackages;
|
||
};
|
||
|
||
# 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 nativeBignumExcludes)) (
|
||
pkgs.lib.attrNames compiler
|
||
);
|
||
in
|
||
pkgs.lib.recurseIntoAttrs (
|
||
pkgs.lib.genAttrs nativeBignumGhcNames (
|
||
name: compiler.${name}.override { enableNativeBignum = true; }
|
||
)
|
||
);
|
||
}
|
||
// pkgs.lib.optionalAttrs config.allowAliases {
|
||
ghc810 = throw "'haskell.compiler.ghc810' has been removed."; # Added 2025-09-07
|
||
ghc90 = throw "'haskell.compiler.ghc90' has been removed."; # Added 2025-09-07
|
||
ghc92 = throw "'haskell.compiler.ghc92' has been removed."; # Added 2025-09-07
|
||
ghcjs = throw "'haskell.compiler.ghcjs' has been removed. Please use 'pkgsCross.ghcjs' instead."; # Added 2025-09-06
|
||
ghcjs810 = throw "'haskell.compiler.ghcjs810' has been removed. Please use 'pkgsCross.ghcjs' instead."; # Added 2025-09-06
|
||
integer-simple = throw "All GHC versions with integer-simple support have been removed."; # Added 2025-09-07
|
||
}
|
||
);
|
||
|
||
# Default overrides that are applied to all package sets.
|
||
packageOverrides = self: super: { };
|
||
|
||
# Always get compilers from `buildPackages`
|
||
packages =
|
||
let
|
||
bh = buildPackages.haskell;
|
||
in
|
||
{
|
||
ghc902Binary = callPackage ../development/haskell-modules {
|
||
buildHaskellPackages = bh.packages.ghc902Binary;
|
||
ghc = bh.compiler.ghc902Binary;
|
||
compilerConfig = callPackage ../development/haskell-modules/configuration-ghc-9.0.x.nix { };
|
||
packageSetConfig = bootstrapPackageSet;
|
||
};
|
||
ghc984Binary = callPackage ../development/haskell-modules {
|
||
buildHaskellPackages = bh.packages.ghc984Binary;
|
||
ghc = bh.compiler.ghc984Binary;
|
||
compilerConfig = callPackage ../development/haskell-modules/configuration-ghc-9.8.x.nix { };
|
||
packageSetConfig = bootstrapPackageSet;
|
||
};
|
||
ghc948 = callPackage ../development/haskell-modules {
|
||
buildHaskellPackages = bh.packages.ghc948;
|
||
ghc = bh.compiler.ghc948;
|
||
compilerConfig = callPackage ../development/haskell-modules/configuration-ghc-9.4.x.nix { };
|
||
};
|
||
ghc94 = packages.ghc948;
|
||
ghc967 = callPackage ../development/haskell-modules {
|
||
buildHaskellPackages = bh.packages.ghc967;
|
||
ghc = bh.compiler.ghc967;
|
||
compilerConfig = callPackage ../development/haskell-modules/configuration-ghc-9.6.x.nix { };
|
||
};
|
||
ghc96 = packages.ghc967;
|
||
ghc984 = callPackage ../development/haskell-modules {
|
||
buildHaskellPackages = bh.packages.ghc984;
|
||
ghc = bh.compiler.ghc984;
|
||
compilerConfig = callPackage ../development/haskell-modules/configuration-ghc-9.8.x.nix { };
|
||
};
|
||
ghc98 = packages.ghc984;
|
||
ghc9102 = callPackage ../development/haskell-modules {
|
||
buildHaskellPackages = bh.packages.ghc9102;
|
||
ghc = bh.compiler.ghc9102;
|
||
compilerConfig = callPackage ../development/haskell-modules/configuration-ghc-9.10.x.nix { };
|
||
};
|
||
ghc9103 = callPackage ../development/haskell-modules {
|
||
buildHaskellPackages = bh.packages.ghc9103;
|
||
ghc = bh.compiler.ghc9103;
|
||
compilerConfig = callPackage ../development/haskell-modules/configuration-ghc-9.10.x.nix { };
|
||
};
|
||
ghc910 = packages.ghc9103;
|
||
ghc9122 = callPackage ../development/haskell-modules {
|
||
buildHaskellPackages = bh.packages.ghc9122;
|
||
ghc = bh.compiler.ghc9122;
|
||
compilerConfig = callPackage ../development/haskell-modules/configuration-ghc-9.12.x.nix { };
|
||
};
|
||
ghc912 = packages.ghc9122;
|
||
ghcHEAD = callPackage ../development/haskell-modules {
|
||
buildHaskellPackages = bh.packages.ghcHEAD;
|
||
ghc = bh.compiler.ghcHEAD;
|
||
compilerConfig = callPackage ../development/haskell-modules/configuration-ghc-9.16.x.nix { };
|
||
};
|
||
|
||
native-bignum =
|
||
let
|
||
nativeBignumGhcNames = pkgs.lib.filter (name: !(builtins.elem name nativeBignumExcludes)) (
|
||
pkgs.lib.attrNames packages
|
||
);
|
||
in
|
||
pkgs.lib.genAttrs nativeBignumGhcNames (
|
||
name:
|
||
packages.${name}.override {
|
||
ghc = bh.compiler.native-bignum.${name};
|
||
buildHaskellPackages = bh.packages.native-bignum.${name};
|
||
}
|
||
);
|
||
}
|
||
// pkgs.lib.optionalAttrs config.allowAliases {
|
||
ghc810 = throw "'haskell.packages.ghc810' has been removed."; # Added 2025-09-07
|
||
ghc90 = throw "'haskell.packages.ghc90' has been removed."; # Added 2025-09-07
|
||
ghc92 = throw "'haskell.packages.ghc92' has been removed."; # Added 2025-09-07
|
||
ghcjs = throw "'haskell.packages.ghcjs' has been removed. Please use 'pkgsCross.ghcjs' instead."; # Added 2025-09-06
|
||
ghcjs810 = throw "'haskell.packages.ghcjs810' has been removed. Please use 'pkgsCross.ghcjs' instead."; # Added 2025-09-06
|
||
integer-simple = throw "All GHC versions with integer-simple support have been removed."; # Added 2025-09-07
|
||
};
|
||
}
|