Files
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

98 lines
2.5 KiB
Nix

# See also ./make-hadrian.nix
{
mkDerivation,
base,
bytestring,
Cabal,
containers,
directory,
extra,
filepath,
lib,
mtl,
parsec,
shake,
text,
transformers,
unordered-containers,
cryptohash-sha256,
base16-bytestring,
writeText,
# Dependencies that are not on Hackage and only used in certain Hadrian versions
ghc-platform ? null,
ghc-toolchain ? null,
# GHC source tree to build hadrian from
ghcSrc,
ghcVersion,
# GHC we are using to bootstrap hadrian (stage0)
bootGhcVersion,
# Customization
userSettings ? null,
}:
mkDerivation {
pname = "hadrian";
version = ghcVersion;
src = ghcSrc;
postUnpack = ''
sourceRoot="$sourceRoot/hadrian"
'';
# Overwrite UserSettings.hs with a provided custom one
postPatch = lib.optionalString (userSettings != null) ''
install -m644 "${writeText "UserSettings.hs" userSettings}" src/UserSettings.hs
'';
configureFlags = [
# avoid QuickCheck dep which needs shared libs / TH
"-f-selftest"
# Building hadrian with -O1 takes quite some time with little benefit.
# Additionally we need to recompile it on every change of UserSettings.hs.
# See https://gitlab.haskell.org/ghc/ghc/-/merge_requests/1190
"-O0"
];
jailbreak =
# Ignore bound directory >= 1.3.9.0, unless the bootstrapping GHC ships it
# which is the case for >= 9.12. Upstream uses this to avoid a race condition
# that only seems to affect Windows. We never build GHC natively on Windows.
# See also https://gitlab.haskell.org/ghc/ghc/-/issues/24382,
# https://gitlab.haskell.org/ghc/ghc/-/commit/a2c033cf826,
# https://gitlab.haskell.org/ghc/ghc/-/commit/7890f2d8526…
(
lib.versionOlder bootGhcVersion "9.12"
&& (
(lib.versionAtLeast ghcVersion "9.6.7" && lib.versionOlder ghcVersion "9.7")
|| lib.versionAtLeast ghcVersion "9.11"
)
);
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
base
bytestring
Cabal
containers
directory
extra
filepath
mtl
parsec
shake
text
transformers
unordered-containers
]
++ lib.optionals (lib.versionAtLeast ghcVersion "9.7") [
cryptohash-sha256
base16-bytestring
]
++ lib.optionals (lib.versionAtLeast ghcVersion "9.9") [
ghc-platform
ghc-toolchain
];
passthru = {
# Expose »private« dependencies if any
inherit ghc-platform ghc-toolchain;
};
description = "GHC build system";
license = lib.licenses.bsd3;
}