Skip to content

Commit cfd757a

Browse files
hamishmackangermandhess
authored
ghc 9.2.7, ghc 9.6.1 and replace old-ghc-nix with nixpkgs ghc (#1854)
* GHC 9.6.1 and 9.2.7 * Support for building with nixpkgs GHC * Use nixpkgs ghc instead of old-ghc-nix to boot GHC * Builds boot tools with nixpkgs ghc * Combines GHC config derivation into the component derivation * Sharing of defaultSetup derivation --------- Co-authored-by: Moritz Angermann <[email protected]> Co-authored-by: Drew Hess <[email protected]>
1 parent 3ed59e0 commit cfd757a

File tree

820 files changed

+103670
-1763
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

820 files changed

+103670
-1763
lines changed

.github/workflows/pipeline.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ jobs:
225225
steps:
226226
- uses: actions/checkout@v3
227227
- name: "Check that evaluation of hydra jobs works without using remote builders"
228-
run: nix-instantiate release.nix -A x86_64-darwin.required-unstable-ghc8107-native --show-trace --builders ''
228+
run: nix path-info --derivation .#requiredJobs.x86_64-darwin.required-unstable-ghc8107-native --show-trace --builders ''
229229

230230
hix-cabal:
231231
runs-on: [self-hosted, linux]

build.nix

+2-1
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ in rec {
2323
tools = pkgs.lib.optionalAttrs (ifdLevel >= 3) (
2424
pkgs.recurseIntoAttrs ({
2525
cabal-latest = tool compiler-nix-name "cabal" { inherit evalPackages; };
26+
} // pkgs.lib.optionalAttrs (__compareVersions haskell.compiler.${compiler-nix-name}.version "9.6" < 0) {
2627
hlint-latest = tool compiler-nix-name "hlint" {
2728
inherit evalPackages;
2829
version = {
@@ -39,7 +40,7 @@ in rec {
3940
"ghc8107" = "3.4.1";
4041
}.${compiler-nix-name} or "latest";
4142
};
42-
} // pkgs.lib.optionalAttrs (!__elem compiler-nix-name ["ghc941" "ghc942" "ghc943" "ghc944"]) {
43+
} // pkgs.lib.optionalAttrs (__compareVersions haskell.compiler.${compiler-nix-name}.version "9.4" < 0) {
4344
stack = tool compiler-nix-name "stack" { version = "2.9.3"; inherit evalPackages; };
4445
hls-latest = tool compiler-nix-name "haskell-language-server" {
4546
inherit evalPackages;

builder/comp-builder.nix

+35-14
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{ pkgs, stdenv, buildPackages, ghc, lib, gobject-introspection ? null, haskellLib, makeConfigFiles, haddockBuilder, ghcForComponent, hsPkgs, compiler, runCommand, libffi, gmp, windows, zlib, ncurses, nodejs }@defaults:
1+
{ pkgs, stdenv, buildPackages, ghc, lib, gobject-introspection ? null, haskellLib, makeConfigFiles, haddockBuilder, ghcForComponent, hsPkgs, compiler, runCommand, libffi, gmp, windows, zlib, ncurses, nodejs, nonReinstallablePkgs }@defaults:
22
lib.makeOverridable (
33
let self =
44
{ componentId
@@ -81,7 +81,7 @@ let self =
8181
, enableTSanRTS ? false
8282

8383
# LLVM
84-
, useLLVM ? ghc.useLLVM
84+
, useLLVM ? ghc.useLLVM or false
8585
, smallAddressSpace ? false
8686

8787
}@drvArgs:
@@ -161,7 +161,7 @@ let
161161
if configureAllComponents
162162
then ["--enable-tests" "--enable-benchmarks"]
163163
else ["${haskellLib.componentTarget componentId}"]
164-
) ++ [ "$(cat ${configFiles}/configure-flags)"
164+
) ++ [ "$(cat $configFiles/configure-flags)"
165165
] ++ commonConfigureFlags);
166166

167167
# From nixpkgs 20.09, the pkg-config exe has a prefix matching the ghc one
@@ -343,9 +343,14 @@ let
343343
config = component;
344344
srcSubDir = cleanSrc.subDir;
345345
srcSubDirPath = cleanSrc.root + cleanSrc.subDir;
346-
inherit configFiles executableToolDepends exeName enableDWARF;
346+
inherit executableToolDepends exeName enableDWARF;
347347
exePath = drv + "/bin/${exeName}";
348-
env = shellWrappers;
348+
env = shellWrappers.drv;
349+
shell = drv.overrideAttrs (attrs: {
350+
pname = nameOnly + "-shell";
351+
inherit (package.identifier) version;
352+
nativeBuildInputs = [shellWrappers.drv] ++ attrs.nativeBuildInputs;
353+
});
349354
profiled = self (drvArgs // { enableLibraryProfiling = true; });
350355
dwarf = self (drvArgs // { enableDWARF = true; });
351356
} // lib.optionalAttrs (haskellLib.isLibrary componentId) ({
@@ -377,19 +382,22 @@ let
377382
# Not sure why pkgconfig needs to be propagatedBuildInputs but
378383
# for gi-gtk-hs it seems to help.
379384
++ map pkgs.lib.getDev (builtins.concatLists pkgconfig)
385+
# These only need to be propagated for library components (otherwise they
386+
# will be in `buildInputs`)
387+
++ lib.optionals (haskellLib.isLibrary componentId) configFiles.libDeps
380388
++ lib.optionals (stdenv.hostPlatform.isWindows)
381-
(lib.flatten component.libs
382-
++ map haskellLib.dependToLib component.depends);
389+
(lib.flatten component.libs);
383390

384-
buildInputs = lib.optionals (!stdenv.hostPlatform.isWindows)
385-
(lib.flatten component.libs
386-
++ map haskellLib.dependToLib component.depends);
391+
buildInputs =
392+
lib.optionals (!haskellLib.isLibrary componentId) configFiles.libDeps
393+
++ lib.optionals (!stdenv.hostPlatform.isWindows)
394+
(lib.flatten component.libs);
387395

388396
nativeBuildInputs =
389-
[shellWrappers buildPackages.removeReferencesTo]
397+
[ghc buildPackages.removeReferencesTo]
390398
++ executableToolDepends;
391399

392-
outputs = ["out" ]
400+
outputs = ["out" "configFiles" "ghc"]
393401
++ (lib.optional enableSeparateDataOutput "data")
394402
++ (lib.optional keepSource "source")
395403
++ (lib.optional writeHieFiles "hie");
@@ -409,6 +417,18 @@ let
409417
'') + commonAttrs.prePatch;
410418

411419
configurePhase = ''
420+
mkdir -p $configFiles
421+
mkdir -p $ghc
422+
wrappedGhc=$ghc
423+
${configFiles.script}
424+
${shellWrappers.script}
425+
''
426+
# Remove any ghc docs pages so nixpkgs does not include them in $out
427+
# (this can result in unwanted dependencies on GHC)
428+
+ ''
429+
rm -rf $wrappedGhc/share/doc $wrappedGhc/share/man $wrappedGhc/share/devhelp/books
430+
PATH=$wrappedGhc/bin:$PATH
431+
412432
runHook preConfigure
413433
echo Configure flags:
414434
printf "%q " ${finalConfigureFlags}
@@ -489,7 +509,7 @@ let
489509
${lib.optionalString (haskellLib.isLibrary componentId) ''
490510
$SETUP_HS register --gen-pkg-config=${name}.conf
491511
${ghc.targetPrefix}ghc-pkg -v0 init $out/package.conf.d
492-
${ghc.targetPrefix}ghc-pkg -v0 --package-db ${configFiles}/${configFiles.packageCfgDir} -f $out/package.conf.d register ${name}.conf
512+
${ghc.targetPrefix}ghc-pkg -v0 --package-db $configFiles/${configFiles.packageCfgDir} -f $out/package.conf.d register ${name}.conf
493513
494514
mkdir -p $out/exactDep
495515
touch $out/exactDep/configure-flags
@@ -521,6 +541,7 @@ let
521541
if id=$(${target-pkg-and-db} field "z-${package.identifier.name}-z-*" id --simple-output); then
522542
name=$(${target-pkg-and-db} field "z-${package.identifier.name}-z-*" name --simple-output)
523543
echo "--dependency=''${name#z-${package.identifier.name}-z-}=$id" >> $out/exactDep/configure-flags
544+
echo "package-id $id" >> $out/envDep
524545
''
525546
# Allow `package-name:sublib-name` to work in `build-depends`
526547
# by adding the same `--dependency` again, but with the package
@@ -616,7 +637,7 @@ let
616637
'';
617638

618639
shellHook = ''
619-
export PATH="${shellWrappers}/bin:$PATH"
640+
export PATH=$ghc/bin:$PATH
620641
${shellHookApplied}
621642
'';
622643
}

builder/default.nix

+9-7
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
let
44
# Builds a single component of a package.
55
comp-builder = haskellLib.weakCallPackage pkgs ./comp-builder.nix {
6-
inherit ghc haskellLib makeConfigFiles haddockBuilder ghcForComponent hsPkgs compiler;
6+
inherit ghc haskellLib makeConfigFiles haddockBuilder ghcForComponent hsPkgs compiler nonReinstallablePkgs;
77
};
88

99
haddockBuilder = haskellLib.weakCallPackage pkgs ./haddock-builder.nix {
@@ -44,7 +44,11 @@ let
4444

4545

4646
hoogleLocal = let
47-
nixpkgsHoogle = import (pkgs.path + /pkgs/development/haskell-modules/hoogle.nix);
47+
# Use hoogle.nix from at least nixpkgs 22.05
48+
nixpkgs = if lib.versionAtLeast lib.trivial.release "22.05"
49+
then pkgs.path
50+
else pkgs.haskell-nix.sources.nixpkgs-2205;
51+
nixpkgsHoogle = import (nixpkgs + /pkgs/development/haskell-modules/hoogle.nix);
4852
in { packages ? [], hoogle ? pkgs.buildPackages.haskell-nix.tool "ghc8107" "hoogle" {
4953
inherit evalPackages;
5054
version = "5.0.18.3";
@@ -59,11 +63,9 @@ let
5963
else ghc;
6064
inherit packages hoogle;
6165
};
62-
in if lib.versionAtLeast lib.trivial.release "22.05"
63-
then haskellLib.weakCallPackage pkgs nixpkgsHoogle {
64-
inherit haskellPackages;
65-
} (p: p.packages)
66-
else haskellLib.weakCallPackage pkgs nixpkgsHoogle haskellPackages;
66+
in haskellLib.weakCallPackage pkgs nixpkgsHoogle {
67+
inherit haskellPackages;
68+
} (p: p.packages);
6769

6870
# Same as haskellPackages.shellFor in nixpkgs.
6971
shellFor = haskellLib.weakCallPackage pkgs ./shell-for.nix {

builder/ghc-for-component-wrapper.nix

+51-40
Original file line numberDiff line numberDiff line change
@@ -20,50 +20,42 @@ let
2020
ghc = if enableDWARF then defaults.ghc.dwarf else defaults.ghc;
2121

2222
inherit (configFiles) targetPrefix ghcCommand ghcCommandCaps packageCfgDir;
23-
libDir = "$out/${configFiles.libDir}";
24-
docDir = "$out/share/doc/ghc/html";
23+
libDir = "$wrappedGhc/${configFiles.libDir}";
24+
docDir = "$wrappedGhc/share/doc/ghc/html";
2525
# For musl we can use haddock from the buildGHC
2626
haddock = if stdenv.hostPlatform.isLinux && stdenv.targetPlatform.isMusl && !haskellLib.isNativeMusl
2727
then ghc.buildGHC
2828
else ghc;
2929

30-
in runCommand "${componentName}-${ghc.name}-env" {
31-
preferLocalBuild = true;
32-
passthru = {
33-
inherit (ghc) version meta;
34-
inherit targetPrefix;
35-
baseGhc = ghc;
36-
};
37-
} (
38-
''
30+
script = ''
3931
. ${makeWrapper}/nix-support/setup-hook
4032
4133
''
4234
# Start with a ghc and remove all of the package directories
4335
+ ''
44-
mkdir -p $out/bin
45-
${lndir}/bin/lndir -silent ${ghc} $out
36+
mkdir -p $wrappedGhc/bin
37+
${lndir}/bin/lndir -silent $unwrappedGhc $wrappedGhc
4638
rm -rf ${libDir}/*/
4739
''
4840
# ... but retain the lib/ghc/bin directory. This contains `unlit' and friends.
4941
+ ''
50-
ln -s ${ghc}/lib/${ghcCommand}-${ghc.version}/bin ${libDir}
42+
ln -s $unwrappedGhc/lib/${ghcCommand}-${ghc.version}/bin ${libDir}
5143
''
5244
# ... and the ghcjs shim's if they are available ...
5345
+ ''
54-
if [ -d ${ghc}/lib/${ghcCommand}-${ghc.version}/shims ]; then
55-
ln -s ${ghc}/lib/${ghcCommand}-${ghc.version}/shims ${libDir}
46+
if [ -d $unwrappedGhc/lib/${ghcCommand}-${ghc.version}/shims ]; then
47+
ln -s $unwrappedGhc/lib/${ghcCommand}-${ghc.version}/shims ${libDir}
5648
fi
5749
''
5850
# ... and node modules ...
5951
+ ''
60-
if [ -d ${ghc}/lib/${ghcCommand}-${ghc.version}/ghcjs-node ]; then
61-
ln -s ${ghc}/lib/${ghcCommand}-${ghc.version}/ghcjs-node ${libDir}
52+
if [ -d $unwrappedGhc/lib/${ghcCommand}-${ghc.version}/ghcjs-node ]; then
53+
ln -s $unwrappedGhc/lib/${ghcCommand}-${ghc.version}/ghcjs-node ${libDir}
6254
fi
6355
''
6456
# Replace the package database with the one from target package config.
6557
+ ''
66-
ln -s ${configFiles}/${packageCfgDir} $out/${packageCfgDir}
58+
ln -s $configFiles/${packageCfgDir} $wrappedGhc/${packageCfgDir}
6759
6860
''
6961
# Set the GHC_PLUGINS environment variable according to the plugins for the component.
@@ -77,9 +69,9 @@ in runCommand "${componentName}-${ghc.name}-env" {
7769
GHC_PLUGINS="["
7870
LIST_PREFIX=""
7971
${builtins.concatStringsSep "\n" (map (plugin: ''
80-
id=$(${ghc}/bin/ghc-pkg --package-db ${plugin.library}/package.conf.d field ${plugin.library.package.identifier.name} id --simple-output)
81-
lib_dir=$(${ghc}/bin/ghc-pkg --package-db ${plugin.library}/package.conf.d field ${plugin.library.package.identifier.name} dynamic-library-dirs --simple-output)
82-
lib_base=$(${ghc}/bin/ghc-pkg --package-db ${plugin.library}/package.conf.d field ${plugin.library.package.identifier.name} hs-libraries --simple-output)
72+
id=$($unwrappedGhc/bin/ghc-pkg --package-db ${plugin.library}/package.conf.d field ${plugin.library.package.identifier.name} id --simple-output)
73+
lib_dir=$($unwrappedGhc/bin/ghc-pkg --package-db ${plugin.library}/package.conf.d field ${plugin.library.package.identifier.name} dynamic-library-dirs --simple-output)
74+
lib_base=$($unwrappedGhc/bin/ghc-pkg --package-db ${plugin.library}/package.conf.d field ${plugin.library.package.identifier.name} hs-libraries --simple-output)
8375
lib="$(echo ''${lib_dir}/lib''${lib_base}*)"
8476
GHC_PLUGINS="''${GHC_PLUGINS}''${LIST_PREFIX}(\"''${lib}\",\"''${id}\",\"${plugin.moduleName}\",["
8577
LIST_PREFIX=""
@@ -103,25 +95,25 @@ in runCommand "${componentName}-${ghc.name}-env" {
10395
# The NIX_ variables are used by the patched Paths_ghc module.
10496
+ ''
10597
for prg in ${ghcCommand} ${ghcCommand}i ${ghcCommand}-${ghc.version} ${ghcCommand}i-${ghc.version}; do
106-
if [[ -x "${ghc}/bin/$prg" ]]; then
107-
rm -f $out/bin/$prg
108-
makeWrapper ${ghc}/bin/$prg $out/bin/$prg \
98+
if [[ -x "$unwrappedGhc/bin/$prg" ]]; then
99+
rm -f $wrappedGhc/bin/$prg
100+
makeWrapper $unwrappedGhc/bin/$prg $wrappedGhc/bin/$prg \
109101
--add-flags '"-B$NIX_${ghcCommandCaps}_LIBDIR"' \
110-
--set "NIX_${ghcCommandCaps}" "$out/bin/${ghcCommand}" \
111-
--set "NIX_${ghcCommandCaps}PKG" "$out/bin/${ghcCommand}-pkg" \
102+
--set "NIX_${ghcCommandCaps}" "$wrappedGhc/bin/${ghcCommand}" \
103+
--set "NIX_${ghcCommandCaps}PKG" "$wrappedGhc/bin/${ghcCommand}-pkg" \
112104
--set "NIX_${ghcCommandCaps}_DOCDIR" "${docDir}" \
113105
--set "GHC_PLUGINS" "$GHC_PLUGINS" \
114106
--set "NIX_${ghcCommandCaps}_LIBDIR" "${libDir}"
115107
fi
116108
done
117109
118110
for prg in "${targetPrefix}runghc" "${targetPrefix}runhaskell"; do
119-
if [[ -x "${ghc}/bin/$prg" ]]; then
120-
rm -f $out/bin/$prg
121-
makeWrapper ${ghc}/bin/$prg $out/bin/$prg \
122-
--add-flags "-f $out/bin/${ghcCommand}" \
123-
--set "NIX_${ghcCommandCaps}" "$out/bin/${ghcCommand}" \
124-
--set "NIX_${ghcCommandCaps}PKG" "$out/bin/${ghcCommand}-pkg" \
111+
if [[ -x "$unwrappedGhc/bin/$prg" ]]; then
112+
rm -f $wrappedGhc/bin/$prg
113+
makeWrapper $unwrappedGhc/bin/$prg $wrappedGhc/bin/$prg \
114+
--add-flags "-f $wrappedGhc/bin/${ghcCommand}" \
115+
--set "NIX_${ghcCommandCaps}" "$wrappedGhc/bin/${ghcCommand}" \
116+
--set "NIX_${ghcCommandCaps}PKG" "$wrappedGhc/bin/${ghcCommand}-pkg" \
125117
--set "NIX_${ghcCommandCaps}_DOCDIR" "${docDir}" \
126118
--set "GHC_PLUGINS" "$GHC_PLUGINS" \
127119
--set "NIX_${ghcCommandCaps}_LIBDIR" "${libDir}"
@@ -132,8 +124,8 @@ in runCommand "${componentName}-${ghc.name}-env" {
132124
# Wrap haddock, if the base GHC provides it.
133125
+ ''
134126
if [[ -x "${haddock}/bin/haddock" ]]; then
135-
rm -f $out/bin/haddock
136-
makeWrapper ${haddock}/bin/haddock $out/bin/haddock \
127+
rm -f $wrappedGhc/bin/haddock
128+
makeWrapper ${haddock}/bin/haddock $wrappedGhc/bin/haddock \
137129
--add-flags '"-B$NIX_${ghcCommandCaps}_LIBDIR"' \
138130
--set "NIX_${ghcCommandCaps}_LIBDIR" "${libDir}"
139131
fi
@@ -143,12 +135,31 @@ in runCommand "${componentName}-${ghc.name}-env" {
143135
# --global-package-db flag.
144136
+ ''
145137
for prg in ${ghcCommand}-pkg ${ghcCommand}-pkg-${ghc.version}; do
146-
if [[ -x "${ghc}/bin/$prg" ]]; then
147-
rm -f $out/bin/$prg
148-
makeWrapper ${ghc}/bin/$prg $out/bin/$prg --add-flags "--global-package-db=$out/${packageCfgDir}"
138+
if [[ -x "$unwrappedGhc/bin/$prg" ]]; then
139+
rm -f $wrappedGhc/bin/$prg
140+
makeWrapper $unwrappedGhc/bin/$prg $wrappedGhc/bin/$prg --add-flags "--global-package-db=$wrappedGhc/${packageCfgDir}"
149141
fi
150142
done
151143
152144
${postInstall}
153-
''
154-
)
145+
'';
146+
147+
drv = runCommand "${componentName}-${ghc.name}-env" {
148+
preferLocalBuild = true;
149+
passthru = {
150+
inherit script targetPrefix;
151+
inherit (ghc) version meta;
152+
};
153+
propagatedBuildInputs = configFiles.libDeps;
154+
nativeBuildInputs = [ghc];
155+
} (''
156+
mkdir -p $out/configFiles
157+
configFiles=$out/configFiles
158+
${configFiles.script}
159+
wrappedGhc=$out
160+
${script}
161+
'');
162+
in {
163+
inherit script drv targetPrefix;
164+
baseGhc = ghc;
165+
}

builder/haddock-builder.nix

+15-10
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ let
4646
finalConfigureFlags = lib.concatStringsSep " " (
4747
[ "--prefix=${componentDrv}"
4848
"${haskellLib.componentTarget componentId}"
49-
"$(cat ${docsConfigFiles}/configure-flags)"
49+
"$(cat $configFiles/configure-flags)"
5050
]
5151
++ commonConfigureFlags
5252
++ lib.optional doHaddock' " --docdir=${docdir "$doc"}");
@@ -62,28 +62,33 @@ let
6262
name = fullName;
6363

6464
passthru = {
65-
configFiles = docsConfigFiles;
66-
6765
# The directory containing the haddock documentation.
68-
haddockDir = if doHaddock' then "${docdir drv.doc}/html" else null;
66+
haddockDir = lib.const (if doHaddock' then "${docdir drv.doc}/html" else null);
6967
};
7068

7169
# `out` contains the `package.conf.d` files used for building the
7270
# haddock files.
7371
# `doc` contains just the haddock output files.
74-
outputs = ["out"]
72+
outputs = ["out" "configFiles" "ghc"]
7573
++ lib.optional doHaddock' "doc";
7674

77-
propagatedBuildInputs = builtins.concatLists pkgconfig;
75+
propagatedBuildInputs =
76+
builtins.concatLists pkgconfig
77+
++ configFiles.libDeps;
7878

79-
buildInputs = component.libs
80-
++ map (d: d.components.library.haddock or d) component.depends;
79+
buildInputs = component.libs;
8180

8281
nativeBuildInputs =
83-
[ shellWrappers buildPackages.removeReferencesTo ]
82+
[ ghc buildPackages.removeReferencesTo ]
8483
++ componentDrv.executableToolDepends;
8584

8685
configurePhase = ''
86+
mkdir -p $configFiles
87+
mkdir -p $ghc
88+
wrappedGhc=$ghc
89+
${docsConfigFiles.script}
90+
${shellWrappers.script}
91+
PATH=$wrappedGhc/bin:$PATH
8792
runHook preConfigure
8893
echo Configure flags:
8994
printf "%q " ${finalConfigureFlags}
@@ -144,7 +149,7 @@ let
144149
# working hyper links.
145150
pkg=$(basename "$i")
146151
sed -e "s|haddock-interfaces:.*|haddock-interfaces: $docdir/html/${componentId.cname}.haddock|" -e "s|haddock-html:.*|haddock-html: $docdir/html/|" "$i" > "$pkg"
147-
${ghc.targetPrefix}ghc-pkg -v0 --package-db ${docsConfigFiles}/${configFiles.packageCfgDir} -f $out/package.conf.d register "$pkg"
152+
${ghc.targetPrefix}ghc-pkg -v0 --package-db $configFiles/${configFiles.packageCfgDir} -f $out/package.conf.d register "$pkg"
148153
done
149154
150155
ln -s ${componentDrv}/exactDep $out/exactDep

0 commit comments

Comments
 (0)