mirror of
https://github.com/ilyakooo0/haskell.nix.git
synced 2024-11-10 06:47:48 +03:00
981 lines
52 KiB
Nix
981 lines
52 KiB
Nix
final: prev:
|
|
let
|
|
installDeps = targetPrefix:
|
|
# First checks that ghc-pkg runs first with `--version` as failures in the `for` and
|
|
# `if` statements will be masked.
|
|
''
|
|
$out/bin/${targetPrefix}ghc-pkg --version
|
|
for P in $($out/bin/${targetPrefix}ghc-pkg list --simple-output | sed 's/-[0-9][0-9.]*//g'); do
|
|
mkdir -p $out/exactDeps/$P
|
|
touch $out/exactDeps/$P/configure-flags
|
|
touch $out/exactDeps/$P/cabal.config
|
|
|
|
if id=$($out/bin/${targetPrefix}ghc-pkg field $P id --simple-output); then
|
|
echo "--dependency=$P=$id" >> $out/exactDeps/$P/configure-flags
|
|
elif id=$($out/bin/${targetPrefix}ghc-pkg field "z-$P-z-*" id --simple-output); then
|
|
name=$($out/bin/${targetPrefix}ghc-pkg field "z-$P-z-*" name --simple-output)
|
|
# so we are dealing with a sublib. As we build sublibs separately, the above
|
|
# query should be safe.
|
|
echo "--dependency=''${name#z-$P-z-}=$id" >> $out/exactDeps/$P/configure-flags
|
|
fi
|
|
if ver=$($out/bin/${targetPrefix}ghc-pkg field $P version --simple-output); then
|
|
echo "constraint: $P == $ver" >> $out/exactDeps/$P/cabal.config
|
|
echo "constraint: $P installed" >> $out/exactDeps/$P/cabal.config
|
|
fi
|
|
done
|
|
|
|
mkdir -p $out/evalDeps
|
|
for P in $($out/bin/${targetPrefix}ghc-pkg list --simple-output | sed 's/-[0-9][0-9.]*//g'); do
|
|
touch $out/evalDeps/$P
|
|
if id=$($out/bin/${targetPrefix}ghc-pkg field $P id --simple-output); then
|
|
echo "package-id $id" >> $out/evalDeps/$P
|
|
fi
|
|
done
|
|
'';
|
|
# For each architecture, what GHC version we should use for bootstrapping.
|
|
buildBootstrapper =
|
|
if final.buildPlatform.isAarch64 && final.buildPlatform.isDarwin
|
|
then {
|
|
compilerNixName = "ghc8107";
|
|
}
|
|
else if final.targetPlatform.isAarch64 || final.buildPlatform.isAarch64
|
|
then {
|
|
compilerNixName = "ghc882";
|
|
}
|
|
else {
|
|
compilerNixName = "ghc844";
|
|
};
|
|
# AArch64 needs 8.8, but we prefer 8.6.5 for other 8.10 builds because of
|
|
# * https://gitlab.haskell.org/ghc/ghc/-/issues/18143
|
|
ghcForBuilding810
|
|
= if (final.buildPlatform.isAarch64 && final.buildPlatform.isDarwin)
|
|
then final.buildPackages.buildPackages.haskell-nix.bootstrap.compiler.ghc8107
|
|
else if (final.buildPlatform.isAarch64 || final.targetPlatform.isAarch64)
|
|
then final.buildPackages.buildPackages.haskell-nix.compiler.ghc884
|
|
else final.buildPackages.buildPackages.haskell-nix.compiler.ghc865;
|
|
latestVer = {
|
|
"8.6" = "8.6.5";
|
|
"8.8" = "8.8.4";
|
|
"8.10" = "8.10.7";
|
|
};
|
|
traceWarnOld = v: x: __trace
|
|
"WARNING: ${x.src-spec.version} is out of date, consider using ${latestVer.${v}}." x;
|
|
errorOldGhcjs = v: up: throw "ghcjs ${v} is no longer supported by haskell.nix. Consider using ${latestVer.${up}}";
|
|
in {
|
|
haskell-nix = prev.haskell-nix // {
|
|
# Use this to disable the existing haskell infra structure for testing purposes
|
|
compiler =
|
|
let bootPkgs = with final.buildPackages; {
|
|
ghc = final.buildPackages.buildPackages.haskell-nix.bootstrap.compiler."${buildBootstrapper.compilerNixName}";
|
|
alex = final.haskell-nix.bootstrap.packages.alex-unchecked;
|
|
happy = final.haskell-nix.bootstrap.packages.happy-unchecked;
|
|
hscolour = final.haskell-nix.bootstrap.packages.hscolour-unchecked;
|
|
};
|
|
sphinx = with final.buildPackages; (python3Packages.sphinx_1_7_9 or python3Packages.sphinx);
|
|
hsc2hs-align-conditionals-patch = final.fetchpatch {
|
|
url = "https://git.haskell.org/hsc2hs.git/patch/738f3666c878ee9e79c3d5e819ef8b3460288edf";
|
|
sha256 = "0plzsbfaq6vb1023lsarrjglwgr9chld4q3m99rcfzx0yx5mibp3";
|
|
extraPrefix = "utils/hsc2hs/";
|
|
stripLen = 1;
|
|
};
|
|
D5123-patch = final.fetchpatch rec { # https://phabricator.haskell.org/D5123
|
|
url = "http://tarballs.nixos.org/sha256/${sha256}";
|
|
name = "D5123.diff";
|
|
sha256 = "0nhqwdamf2y4gbwqxcgjxs0kqx23w9gv5kj0zv6450dq19rji82n";
|
|
};
|
|
haddock-900-patch = final.fetchpatch rec { # https://github.com/haskell/haddock/issues/900
|
|
url = "https://patch-diff.githubusercontent.com/raw/haskell/haddock/pull/983.diff";
|
|
name = "loadpluginsinmodules.diff";
|
|
sha256 = "0bvvv0zsfq2581zsir97zfkggc1kkircbbajc2fz3b169ycpbha1";
|
|
extraPrefix = "utils/haddock/";
|
|
stripLen = 1;
|
|
};
|
|
ghc-patches = version: let
|
|
# Returns true iff this derivation's version is strictly older than ver.
|
|
versionLessThan = ver: builtins.compareVersions ver version == 1;
|
|
# Returns true iff this derivation's version is greater than or equal to ver.
|
|
versionAtLeast = ver: !versionLessThan ver;
|
|
from = start: final.lib.optional (versionAtLeast start);
|
|
fromUntil = start: end: final.lib.optional (versionAtLeast start && versionLessThan end);
|
|
until = end: final.lib.optional (versionLessThan end);
|
|
always = final.lib.optional true;
|
|
# Try to avoid reordering the patches unless a patch is added or changed that
|
|
# will be applied to most versions of the GHC anyway (reordering the patches
|
|
# results in rebuilds of GHC and reduces sharing in /nix/store).
|
|
in fromUntil "8.4.4" "8.6" ./patches/ghc/ghc-8.4.4-reinstallable-lib-ghc.patch
|
|
++ until "8.6" ./patches/ghc/iserv-move-8.4.1.patch # 6fbe5f274ba84181f5db50901639ae382ef68c4b -- merged; ghc-8.6.1
|
|
++ until "8.6" ./patches/ghc/hsc2hs-8.4.2.patch
|
|
++ until "8.6" ./patches/ghc/various-8.4.2.patch
|
|
++ until "8.6" ./patches/ghc/lowercase-8.4.2.patch
|
|
++ until "8.6" ./patches/ghc/cabal-exe-ext-8.4.2.patch
|
|
++ until "8.6" ./patches/ghc/ghc-8.4.3-Cabal2201-SMP-test-fix.patch
|
|
++ until "8.6" ./patches/ghc/outputtable-assert-8.4.patch
|
|
++ fromUntil "8.6" "8.6.4" ./patches/ghc/MR148--T16104-GhcPlugins.patch
|
|
++ until "8.6.4" ./patches/ghc/MR95--ghc-pkg-deadlock-fix.patch
|
|
++ fromUntil "8.4" "8.6" ./patches/ghc/iserv-autoconf-8.4.1.patch # (same as below, but based on 8.4)
|
|
++ fromUntil "8.6" "8.8" ./patches/ghc/iserv-autoconf-8.6.1.patch # 8f9f52d8e421ce544d5437a93117545d52d0eabd -- merged; ghc-8.8.1
|
|
++ fromUntil "8.4" "8.6" ./patches/ghc/iserv-cleanup-8.8.1-prepare-8.4.1.patch # (prepare for below; see patch for details)
|
|
++ until "8.10" ./patches/ghc/iserv-cleanup-8.8.1.patch # https://gitlab.haskell.org/ghc/ghc/merge_requests/250 -- merged; ghc-8.10.1
|
|
++ fromUntil "8.4" "8.6" ./patches/ghc/iserv-cleanup-8.8.1-revert-8.4.1.patch # (revert prepare)
|
|
++ fromUntil "8.2" "8.8" ./patches/ghc/MR545--ghc-pkg-databases.patch # https://gitlab.haskell.org/ghc/ghc/merge_requests/545 -- merged; ghc-8.8.1
|
|
++ fromUntil "8.6" "8.8" ./patches/ghc/outputtable-assert-8.6.patch
|
|
++ fromUntil "8.6.4" "8.8" ./patches/ghc/ghc-8.6.4-reenable-th-qq-in-stage1.patch
|
|
++ until "8.8" ./patches/ghc/0001-Stop-the-linker-panic.patch # https://phabricator.haskell.org/D5012 -- merged; ghc-8.8.1
|
|
++ until "8.8" ./patches/ghc/ghc-8.4.3-Cabal2201-allow-test-wrapper.patch # https://github.com/haskell/cabal/pulls/5995 -- merged; cabal-3.0.0 (ghc-8.8.1)
|
|
++ until "8.8" ./patches/ghc/ghc-8.4.3-Cabal2201-response-file-support.patch # https://github.com/haskell/cabal/pulls/5996 -- merged; cabal-3.0.0 (ghc-8.8.1)
|
|
++ until "8.8" ./patches/ghc/ghc-8.6-Cabal-fix-datadir.patch # https://github.com/haskell/cabal/issues/5862
|
|
++ until "8.8" ./patches/ghc/MR196--ghc-pkg-shut-up.patch # https://gitlab.haskell.org/ghc/ghc/merge_requests/196 -- merged; ghc-8.8.1
|
|
++ fromUntil "8.6" "8.10" ./patches/ghc/mistuke-ghc-err_clean_up_error_handler-8ab1a89af89848f1713e6849f189de66c0ed7898.diff # this is part of Phyx- revamped io-manager.
|
|
++ until "8.10" ./patches/ghc/ghc-add-keepCAFs-to-rts.patch # https://gitlab.haskell.org/ghc/ghc/merge_requests/950 -- open
|
|
++ until "8.10" ./patches/ghc/lowercase-8.6.patch # https://gitlab.haskell.org/ghc/ghc/merge_requests/949 -- merged; ghc-8.8.1
|
|
++ always ./patches/ghc/dll-loader-8.4.2.patch # https://gitlab.haskell.org/ghc/ghc/merge_requests/949 -- open
|
|
++ always ./patches/ghc/ghc-8.4.3-Cabal2201-no-hackage-tests.patch # ?
|
|
++ until "8.10" ./patches/ghc/MR948--32bit-cross-th.patch # https://gitlab.haskell.org/ghc/ghc/merge_requests/948 -- open
|
|
++ from "8.8" ./patches/ghc/cabal-host.patch # https://github.com/haskell/cabal/issues/5887
|
|
++ fromUntil "8.6.4" "8.8" ./patches/ghc/ghc-8.6.4-prim-no-arm-atomics.patch
|
|
++ fromUntil "8.6.4" "8.8" ./patches/ghc/global-offset-table.patch
|
|
++ fromUntil "8.6.4" "8.8" ./patches/ghc/global-offset-table-2.patch
|
|
++ until "9.0" ./patches/ghc/respect-ar-path.patch
|
|
++ until "8.10" ./patches/ghc/MR2537-use-one-shot-kqueue-on-macos.patch
|
|
++ final.lib.optional (version == "8.6.3") ./patches/ghc/T16057--ghci-doa-on-windows.patch
|
|
++ final.lib.optional (version == "8.6.3") ./patches/ghc/ghc-8.6.3-reinstallable-lib-ghc.patch
|
|
++ final.lib.optional (version == "8.6.4") ./patches/ghc/ghc-8.6.4-reinstallable-lib-ghc.patch
|
|
++ final.lib.optional (version == "8.6.5") ./patches/ghc/ghc-8.6.5-reinstallable-lib-ghc.patch
|
|
++ fromUntil "8.6.5" "8.9" ./patches/ghc/ghc-8.6.5-atomic-arm-arch.patch
|
|
++ final.lib.optional (version == "8.6.5") ./patches/ghc/MR3214-writable-rel-ro-data.patch
|
|
++ final.lib.optional (version == "8.8.1") ./patches/ghc/ghc-8.8.1-reinstallable-lib-ghc.patch
|
|
++ fromUntil "8.8.2" "8.9" ./patches/ghc/ghc-8.8.2-reinstallable-lib-ghc.patch
|
|
++ final.lib.optional (version == "8.6.4") ./patches/ghc/ghc-8.6.4-better-plusSimplCountErrors.patch
|
|
++ final.lib.optional (versionAtLeast "8.6.4" && versionLessThan "9.0" && final.stdenv.isDarwin) ./patches/ghc/ghc-macOS-loadArchive-fix.patch
|
|
++ final.lib.optional (versionAtLeast "8.4.4" && versionLessThan "8.10" && final.stdenv.isDarwin) ./patches/ghc/ghc-darwin-gcc-version-fix.patch
|
|
++ final.lib.optional (versionAtLeast "8.10.1" && final.stdenv.isDarwin) ./patches/ghc/ghc-8.10-darwin-gcc-version-fix.patch
|
|
# backport of https://gitlab.haskell.org/ghc/ghc/-/merge_requests/3227
|
|
# the first one is a prerequisite.
|
|
# both are trimmed to only include the make build system part and not the
|
|
# hadrian one.
|
|
++ fromUntil "8.8" "8.10.2" ./patches/ghc/bec76733b818b0489ffea0834ab6b1560207577c.patch
|
|
++ fromUntil "8.8" "8.8.4" ./patches/ghc/67738db10010fd28a8e997b5c8f83ea591b88a0e.patch
|
|
++ fromUntil "8.10" "8.10.2" ./patches/ghc/67738db10010fd28a8e997b5c8f83ea591b88a0e.patch
|
|
++ final.lib.optional (versionAtLeast "8.6.4" && versionLessThan "8.8") ./patches/ghc/ghc-no-system-linker.patch
|
|
|
|
++ fromUntil "8.10.2" "8.10.3" ./patches/ghc/MR3714-backported-to-8.10.2.patch
|
|
|
|
# See https://github.com/input-output-hk/haskell.nix/issues/1027
|
|
++ final.lib.optional (versionAtLeast "8.10.3" && final.targetPlatform.isAarch64) ./patches/ghc/3434.patch
|
|
|
|
++ from "8.10.1" ./patches/ghc/ghc-acrt-iob-func.patch
|
|
|
|
++ fromUntil "8.10.1" "8.10.3" ./patches/ghc/ghc-8.10-ubxt.patch
|
|
++ fromUntil "8.10.3" "8.10.5" ./patches/ghc/ghc-8.10.3-ubxt.patch
|
|
++ fromUntil "8.10.5" "8.11" ./patches/ghc/ghc-8.10.5-ubxt.patch
|
|
++ final.lib.optional (versionAtLeast "8.6.4") ./patches/ghc/Cabal-3886.patch
|
|
|
|
++ fromUntil "8.10.3" "8.10.5" ./patches/ghc/ghc-8.10.3-rts-make-markLiveObject-thread-safe.patch
|
|
++ final.lib.optionals final.targetPlatform.isWindows
|
|
(fromUntil "8.10.4" "8.10.8" ./patches/ghc/ghc-8.10-z-drive-fix.patch)
|
|
++ final.lib.optional (versionAtLeast "8.6.5") ./patches/ghc/ghc-8.10-windows-add-dependent-file.patch
|
|
++ fromUntil "8.10.1" "9.0" ./patches/ghc/Cabal-unbreak-GHCJS.patch
|
|
++ until "8.10.5" ./patches/ghc/AC_PROG_CC_99.patch
|
|
++ fromUntil "9.0.1" "9.0.2" ./patches/ghc/AC_PROG_CC_99.patch
|
|
++ fromUntil "8.10.5" "8.10.6" ./patches/ghc/ghc-8.10.5-add-rts-exports.patch
|
|
++ final.lib.optionals final.hostPlatform.isDarwin
|
|
(fromUntil "8.10.5" "8.10.6" ./patches/ghc/ghc-8.10.5-darwin-allocateExec.patch)
|
|
++ until "8.10.6" ./patches/ghc/Sphinx_Unicode_Error.patch
|
|
;
|
|
in ({
|
|
ghc844 = final.callPackage ../compiler/ghc {
|
|
extra-passthru = { buildGHC = final.buildPackages.haskell-nix.compiler.ghc844; };
|
|
|
|
inherit sphinx installDeps;
|
|
bootPkgs = bootPkgs // {
|
|
# GHC 8.6.5 and earlier need happy 1.19.11
|
|
happy = final.haskell-nix.bootstrap.packages.happy-old-unchecked;
|
|
};
|
|
|
|
buildLlvmPackages = final.buildPackages.llvmPackages_5;
|
|
llvmPackages = final.llvmPackages_5;
|
|
|
|
src-spec = rec {
|
|
version = "8.4.4";
|
|
url = "https://downloads.haskell.org/~ghc/${version}/ghc-${version}-src.tar.xz";
|
|
sha256 = "1ch4j2asg7pr52ai1hwzykxyj553wndg7wq93i47ql4fllspf48i";
|
|
};
|
|
|
|
ghc-patches = ghc-patches "8.4.4"
|
|
++ [ hsc2hs-align-conditionals-patch D5123-patch ]
|
|
++ final.lib.optional final.stdenv.isDarwin ./patches/ghc/ghc-8.4.4-backport-dylib-command-size-limit.patch;
|
|
};
|
|
ghc861 = final.callPackage ../compiler/ghc (traceWarnOld "8.6" {
|
|
extra-passthru = { buildGHC = final.buildPackages.haskell-nix.compiler.ghc861; };
|
|
|
|
inherit sphinx installDeps;
|
|
bootPkgs = bootPkgs // {
|
|
# GHC 8.6.5 and earlier need happy 1.19.11
|
|
happy = final.haskell-nix.bootstrap.packages.happy-old-unchecked;
|
|
};
|
|
|
|
buildLlvmPackages = final.buildPackages.llvmPackages_6;
|
|
llvmPackages = final.llvmPackages_6;
|
|
|
|
src-spec = rec {
|
|
version = "8.6.1";
|
|
url = "https://downloads.haskell.org/~ghc/${version}/ghc-${version}-src.tar.xz";
|
|
sha256 = "0dkh7idgrqr567fq94a0f5x3w0r4cm2ydn51nb5wfisw3rnw499c";
|
|
};
|
|
|
|
ghc-patches = [ D5123-patch ];
|
|
});
|
|
ghc862 = final.callPackage ../compiler/ghc (traceWarnOld "8.6" {
|
|
extra-passthru = { buildGHC = final.buildPackages.haskell-nix.compiler.ghc862; };
|
|
|
|
inherit sphinx installDeps;
|
|
bootPkgs = bootPkgs // {
|
|
# GHC 8.6.5 and earlier need happy 1.19.11
|
|
happy = final.haskell-nix.bootstrap.packages.happy-old-unchecked;
|
|
};
|
|
|
|
buildLlvmPackages = final.buildPackages.llvmPackages_6;
|
|
llvmPackages = final.llvmPackages_6;
|
|
|
|
src-spec = rec {
|
|
version = "8.6.2";
|
|
url = "https://downloads.haskell.org/~ghc/${version}/ghc-${version}-src.tar.xz";
|
|
sha256 = "1mbn3n2ynmpfpb7jfnhpzzli31qqxqyi8ws71blws3i846fq3ana";
|
|
};
|
|
|
|
ghc-patches = ghc-patches "8.6.2"
|
|
++ [ D5123-patch ];
|
|
});
|
|
ghc863 = final.callPackage ../compiler/ghc (traceWarnOld "8.6" {
|
|
extra-passthru = { buildGHC = final.buildPackages.haskell-nix.compiler.ghc863; };
|
|
|
|
inherit sphinx installDeps;
|
|
bootPkgs = bootPkgs // {
|
|
# GHC 8.6.5 and earlier need happy 1.19.11
|
|
happy = final.haskell-nix.bootstrap.packages.happy-old-unchecked;
|
|
};
|
|
|
|
buildLlvmPackages = final.buildPackages.llvmPackages_6;
|
|
llvmPackages = final.llvmPackages_6;
|
|
|
|
src-spec = rec {
|
|
version = "8.6.3";
|
|
url = "https://downloads.haskell.org/~ghc/${version}/ghc-${version}-src.tar.xz";
|
|
sha256 = "08vzq0dpg4a39bs61j6rq4z0n7jby5mc69h4m25xhd8rjyvkg7lz";
|
|
};
|
|
|
|
ghc-patches = ghc-patches "8.6.3"
|
|
++ [ D5123-patch ];
|
|
});
|
|
ghc864 = final.callPackage ../compiler/ghc (traceWarnOld "8.6" {
|
|
extra-passthru = { buildGHC = final.buildPackages.haskell-nix.compiler.ghc864; };
|
|
|
|
inherit sphinx installDeps;
|
|
bootPkgs = bootPkgs // {
|
|
# GHC 8.6.5 and earlier need happy 1.19.11
|
|
happy = final.haskell-nix.bootstrap.packages.happy-old-unchecked;
|
|
};
|
|
|
|
buildLlvmPackages = final.buildPackages.llvmPackages_6;
|
|
llvmPackages = final.llvmPackages_6;
|
|
|
|
src-spec = rec {
|
|
version = "8.6.4";
|
|
url = "https://downloads.haskell.org/~ghc/${version}/ghc-${version}-src.tar.xz";
|
|
sha256 = "0fihs1sr0hpk67dn9cmrsav13kkcp9hz8ggdqcrs80rj8vj0fpav";
|
|
};
|
|
|
|
ghc-patches = ghc-patches "8.6.4"
|
|
++ [ D5123-patch ];
|
|
});
|
|
ghc865 = final.callPackage ../compiler/ghc {
|
|
extra-passthru = { buildGHC = final.buildPackages.haskell-nix.compiler.ghc865; };
|
|
|
|
inherit sphinx installDeps;
|
|
bootPkgs = bootPkgs // {
|
|
# GHC 8.6.5 and earlier need happy 1.19.11
|
|
happy = final.haskell-nix.bootstrap.packages.happy-old-unchecked;
|
|
};
|
|
|
|
buildLlvmPackages = final.buildPackages.llvmPackages_6;
|
|
llvmPackages = final.llvmPackages_6;
|
|
|
|
src-spec = rec {
|
|
version = "8.6.5";
|
|
url = "https://downloads.haskell.org/~ghc/${version}/ghc-${version}-src.tar.xz";
|
|
sha256 = "0qg3zsmbk4rkwkc3jpas3zs74qaxmw4sp4v1mhsbj0a0dzls2jjd";
|
|
};
|
|
|
|
ghc-patches = ghc-patches "8.6.5"
|
|
++ [ D5123-patch haddock-900-patch ];
|
|
};
|
|
ghc881 = final.callPackage ../compiler/ghc (traceWarnOld "8.8" {
|
|
extra-passthru = { buildGHC = final.buildPackages.haskell-nix.compiler.ghc881; };
|
|
|
|
inherit bootPkgs sphinx installDeps;
|
|
|
|
buildLlvmPackages = final.buildPackages.llvmPackages_7;
|
|
llvmPackages = final.llvmPackages_7;
|
|
|
|
src-spec = rec {
|
|
version = "8.8.1";
|
|
url = "https://downloads.haskell.org/~ghc/${version}/ghc-${version}-src.tar.xz";
|
|
sha256 = "06kj4fhvijinjafiy4s873n60qly323rdlz9bmc79nhlp3cq72lh";
|
|
};
|
|
|
|
ghc-patches = ghc-patches "8.8.1";
|
|
});
|
|
ghc882 = final.callPackage ../compiler/ghc (traceWarnOld "8.8" {
|
|
extra-passthru = { buildGHC = final.buildPackages.haskell-nix.compiler.ghc882; };
|
|
|
|
inherit bootPkgs sphinx installDeps;
|
|
|
|
buildLlvmPackages = final.buildPackages.llvmPackages_7;
|
|
llvmPackages = final.llvmPackages_7;
|
|
|
|
src-spec = rec {
|
|
version = "8.8.2";
|
|
url = "https://downloads.haskell.org/~ghc/${version}/ghc-${version}-src.tar.xz";
|
|
sha256 = "02qa6wgjpxgakg7hv4zfdlrx9k7zxa5i02wnr6y9fsv8j16sbkh1";
|
|
};
|
|
|
|
ghc-patches = ghc-patches "8.8.2";
|
|
});
|
|
ghc883 = final.callPackage ../compiler/ghc (traceWarnOld "8.8" {
|
|
extra-passthru = { buildGHC = final.buildPackages.haskell-nix.compiler.ghc883; };
|
|
|
|
inherit bootPkgs sphinx installDeps;
|
|
|
|
buildLlvmPackages = final.buildPackages.llvmPackages_7;
|
|
llvmPackages = final.llvmPackages_7;
|
|
|
|
src-spec = rec {
|
|
version = "8.8.3";
|
|
url = "https://downloads.haskell.org/~ghc/${version}/ghc-${version}-src.tar.xz";
|
|
sha256 = "128g932i3wix6ic03v04nh5755vyjiidzri9iybwad72yfmc1p70";
|
|
};
|
|
|
|
ghc-patches = ghc-patches "8.8.3";
|
|
});
|
|
ghc884 = final.callPackage ../compiler/ghc {
|
|
extra-passthru = { buildGHC = final.buildPackages.haskell-nix.compiler.ghc884; };
|
|
|
|
inherit bootPkgs sphinx installDeps;
|
|
|
|
buildLlvmPackages = final.buildPackages.llvmPackages_7;
|
|
llvmPackages = final.llvmPackages_7;
|
|
|
|
src-spec = rec {
|
|
version = "8.8.4";
|
|
url = "https://downloads.haskell.org/~ghc/${version}/ghc-${version}-src.tar.xz";
|
|
sha256 = "0bgwbxxvdn56l91bp9p5d083gzcfdi6z8l8b17qzjpr3n8w5wl7h";
|
|
};
|
|
|
|
ghc-patches = ghc-patches "8.8.4";
|
|
};
|
|
ghc8101 = final.callPackage ../compiler/ghc (traceWarnOld "8.10" {
|
|
extra-passthru = { buildGHC = final.buildPackages.haskell-nix.compiler.ghc8101; };
|
|
|
|
bootPkgs = bootPkgs // {
|
|
ghc = ghcForBuilding810;
|
|
};
|
|
inherit sphinx installDeps;
|
|
|
|
buildLlvmPackages = final.buildPackages.llvmPackages_9;
|
|
llvmPackages = final.llvmPackages_9;
|
|
|
|
src-spec = rec {
|
|
version = "8.10.1";
|
|
url = "https://downloads.haskell.org/~ghc/${version}/ghc-${version}-src.tar.xz";
|
|
sha256 = "1xgdl6ig5jzli3bg054vfryfkg0y6wggf68g66c32sr67bw0ffsf";
|
|
};
|
|
|
|
ghc-patches = ghc-patches "8.10.1";
|
|
});
|
|
ghc8102 = final.callPackage ../compiler/ghc (traceWarnOld "8.10" {
|
|
extra-passthru = { buildGHC = final.buildPackages.haskell-nix.compiler.ghc8102; };
|
|
|
|
bootPkgs = bootPkgs // {
|
|
ghc = ghcForBuilding810;
|
|
};
|
|
inherit sphinx installDeps;
|
|
|
|
buildLlvmPackages = final.buildPackages.llvmPackages_9;
|
|
llvmPackages = final.llvmPackages_9;
|
|
|
|
src-spec = rec {
|
|
version = "8.10.2";
|
|
url = "https://downloads.haskell.org/~ghc/${version}/ghc-${version}-src.tar.xz";
|
|
sha256 = "02w8n085bw38vyp694j0lfk5wcnwkdaj7hhp0saj71x74533lmww";
|
|
};
|
|
|
|
ghc-patches = ghc-patches "8.10.2";
|
|
});
|
|
ghc8103 = final.callPackage ../compiler/ghc (traceWarnOld "8.10" {
|
|
extra-passthru = { buildGHC = final.buildPackages.haskell-nix.compiler.ghc8103; };
|
|
|
|
bootPkgs = bootPkgs // {
|
|
ghc = ghcForBuilding810;
|
|
};
|
|
inherit sphinx installDeps;
|
|
|
|
buildLlvmPackages = final.buildPackages.llvmPackages_9;
|
|
llvmPackages = final.llvmPackages_9;
|
|
|
|
src-spec = rec {
|
|
version = "8.10.3";
|
|
url = "https://downloads.haskell.org/~ghc/${version}/ghc-${version}-src.tar.xz";
|
|
sha256 = "0cdrdvs5qnqr93cr9zvrlfjv2xr671kjjghnsw4afa4hahcq7p6c";
|
|
};
|
|
|
|
ghc-patches = ghc-patches "8.10.3";
|
|
});
|
|
ghc8104 = final.callPackage ../compiler/ghc (traceWarnOld "8.10" {
|
|
extra-passthru = { buildGHC = final.buildPackages.haskell-nix.compiler.ghc8104; };
|
|
|
|
bootPkgs = bootPkgs // {
|
|
ghc = ghcForBuilding810;
|
|
};
|
|
inherit sphinx installDeps;
|
|
|
|
buildLlvmPackages = final.buildPackages.llvmPackages_9;
|
|
llvmPackages = final.llvmPackages_9;
|
|
|
|
src-spec = rec {
|
|
version = "8.10.4";
|
|
url = "https://downloads.haskell.org/~ghc/${version}/ghc-${version}-src.tar.xz";
|
|
sha256 = "03li4k10hxgyxcdyyz2092wx09spr1599hi0sxbh4m889qdqgbsj";
|
|
};
|
|
|
|
ghc-patches = ghc-patches "8.10.4";
|
|
});
|
|
ghc8105 = final.callPackage ../compiler/ghc (traceWarnOld "8.10" {
|
|
extra-passthru = { buildGHC = final.buildPackages.haskell-nix.compiler.ghc8105; };
|
|
|
|
bootPkgs = bootPkgs // {
|
|
ghc = ghcForBuilding810;
|
|
};
|
|
inherit sphinx installDeps;
|
|
|
|
buildLlvmPackages = final.buildPackages.llvmPackages_9;
|
|
llvmPackages = final.llvmPackages_9;
|
|
|
|
src-spec = rec {
|
|
version = "8.10.5";
|
|
url = "https://downloads.haskell.org/~ghc/${version}/ghc-${version}-src.tar.xz";
|
|
sha256 = "0vq7wch0wfvy2b5dbi308lq5225vf691n95m19c9igagdvql22gi";
|
|
};
|
|
|
|
ghc-patches = ghc-patches "8.10.5";
|
|
});
|
|
ghc8106 = final.callPackage ../compiler/ghc (traceWarnOld "8.10" {
|
|
extra-passthru = { buildGHC = final.buildPackages.haskell-nix.compiler.ghc8106; };
|
|
|
|
bootPkgs = bootPkgs // {
|
|
ghc = ghcForBuilding810;
|
|
};
|
|
inherit sphinx installDeps;
|
|
|
|
buildLlvmPackages = final.buildPackages.llvmPackages_9;
|
|
llvmPackages = final.llvmPackages_9;
|
|
|
|
src-spec = rec {
|
|
version = "8.10.6";
|
|
url = "https://downloads.haskell.org/~ghc/${version}/ghc-${version}-src.tar.xz";
|
|
sha256 = "1s8cc50whb0qsgnmq6p40ir5yzp3nm3x0as9q518nh1klmrbmbs3";
|
|
};
|
|
|
|
ghc-patches = ghc-patches "8.10.6";
|
|
});
|
|
ghc8107 = final.callPackage ../compiler/ghc {
|
|
extra-passthru = { buildGHC = final.buildPackages.haskell-nix.compiler.ghc8107; };
|
|
|
|
bootPkgs = bootPkgs // {
|
|
ghc = ghcForBuilding810;
|
|
};
|
|
inherit sphinx installDeps;
|
|
|
|
buildLlvmPackages = final.buildPackages.llvmPackages_9;
|
|
llvmPackages = final.llvmPackages_9;
|
|
|
|
src-spec = rec {
|
|
version = "8.10.7";
|
|
url = "https://downloads.haskell.org/~ghc/${version}/ghc-${version}-src.tar.xz";
|
|
sha256 = "179ws2q0dinl1a39wm9j37xzwm84zfz3c5543vz8v479khigdvp3";
|
|
};
|
|
|
|
ghc-patches = ghc-patches "8.10.7";
|
|
};
|
|
ghc901 = final.callPackage ../compiler/ghc {
|
|
extra-passthru = { buildGHC = final.buildPackages.haskell-nix.compiler.ghc901; };
|
|
|
|
bootPkgs = bootPkgs // {
|
|
ghc = final.buildPackages.buildPackages.haskell-nix.compiler.ghc884;
|
|
};
|
|
inherit sphinx installDeps;
|
|
|
|
buildLlvmPackages = final.buildPackages.llvmPackages_9;
|
|
llvmPackages = final.llvmPackages_9;
|
|
|
|
src-spec = rec {
|
|
version = "9.0.1";
|
|
url = "https://downloads.haskell.org/~ghc/${version}/ghc-${version}-src.tar.xz";
|
|
sha256 = "1y9mi9bq76z04hmggavrn8jwi1gx92bm3zhx6z69ypq6wha068x5";
|
|
};
|
|
|
|
ghc-patches = ghc-patches "9.0.1";
|
|
};
|
|
# ghc 8.10.4 with patches needed by plutus
|
|
ghc810420210212 = final.callPackage ../compiler/ghc {
|
|
extra-passthru = { buildGHC = final.buildPackages.haskell-nix.compiler.ghc810420210212; };
|
|
|
|
bootPkgs = bootPkgs // {
|
|
ghc = if (final.buildPlatform.isAarch64 || final.targetPlatform.isAarch64)
|
|
then final.buildPackages.buildPackages.haskell-nix.compiler.ghc884
|
|
else final.buildPackages.buildPackages.haskell-nix.compiler.ghc865;
|
|
};
|
|
inherit sphinx installDeps;
|
|
|
|
buildLlvmPackages = final.buildPackages.llvmPackages_9;
|
|
llvmPackages = final.llvmPackages_9;
|
|
|
|
src-spec = rec {
|
|
version = "8.10.4";
|
|
url = "https://downloads.haskell.org/~ghc/${version}/ghc-${version}-src.tar.xz";
|
|
sha256 = "03li4k10hxgyxcdyyz2092wx09spr1599hi0sxbh4m889qdqgbsj";
|
|
};
|
|
ghc-patches = ghc-patches "8.10.4"
|
|
++ [ ./patches/ghc/core-field.patch ];
|
|
|
|
# Avoid clashes with normal ghc8104
|
|
ghc-version = "8.10.4.20210212";
|
|
};
|
|
} // final.lib.optionalAttrs (final.targetPlatform.isGhcjs or false) (
|
|
if final.hostPlatform.isGhcjs
|
|
then throw "An attempt was made to build ghcjs with ghcjs (perhaps use `buildPackages` when refering to ghc)"
|
|
else
|
|
# This will inject `exactDeps` and `envDeps` into the ghcjs
|
|
# compiler defined below. This is crucial to build packages
|
|
# with the current use of env and exact Deps.
|
|
(builtins.mapAttrs
|
|
(_: v: v // {
|
|
useLLVM = false;
|
|
isHaskellNixBootCompiler = true;
|
|
})
|
|
({
|
|
# Better error messages when an unsupported version of ghcjs is used
|
|
ghc844 = errorOldGhcjs "8.4.4" "8.6";
|
|
ghc861 = errorOldGhcjs "8.6.1" "8.6";
|
|
ghc862 = errorOldGhcjs "8.6.2" "8.6";
|
|
ghc863 = errorOldGhcjs "8.6.3" "8.6";
|
|
ghc864 = errorOldGhcjs "8.6.4" "8.6";
|
|
ghc881 = errorOldGhcjs "8.8.1" "8.8";
|
|
ghc882 = errorOldGhcjs "8.8.2" "8.8";
|
|
ghc883 = errorOldGhcjs "8.8.3" "8.8";
|
|
ghc8101 = errorOldGhcjs "8.10.1" "8.10";
|
|
ghc8102 = errorOldGhcjs "8.10.2" "8.10";
|
|
ghc8103 = errorOldGhcjs "8.10.3" "8.10";
|
|
ghc8104 = errorOldGhcjs "8.10.4" "8.10";
|
|
ghc810420210212 = throw "ghcjs for ghc810420210212 is not supported by haskell.nix";
|
|
ghc901 = throw "ghcjs 9.0.1 is not yet supported by haskell.nix";
|
|
ghc865 = let buildGHC = final.buildPackages.haskell-nix.compiler.ghc865;
|
|
in let booted-ghcjs = final.callPackage ../compiler/ghcjs/ghcjs.nix {
|
|
ghcjsSrcJson = ../compiler/ghcjs/ghcjs-src.json;
|
|
ghcjsVersion = "8.6.0.0.10";
|
|
ghc = buildGHC;
|
|
}; in let targetPrefix = "js-unknown-ghcjs-"; in final.runCommand "${targetPrefix}ghc-8.6.5" {
|
|
nativeBuildInputs = [ final.xorg.lndir ];
|
|
passthru = {
|
|
inherit targetPrefix;
|
|
version = "8.6.5";
|
|
isHaskellNixCompiler = true;
|
|
enableShared = false;
|
|
inherit (booted-ghcjs) configured-src bundled-ghcjs project;
|
|
inherit booted-ghcjs buildGHC;
|
|
extraConfigureFlags = [
|
|
"--ghcjs"
|
|
"--with-ghcjs=${targetPrefix}ghc" "--with-ghcjs-pkg=${targetPrefix}ghc-pkg"
|
|
"--with-gcc=${final.buildPackages.emscripten}/bin/emcc"
|
|
];
|
|
};
|
|
# note: we'll use the buildGHCs `hsc2hs`, ghcjss wrapper just horribly breaks in this nix setup.
|
|
} (''
|
|
mkdir -p $out/bin
|
|
cd $out/bin
|
|
ln -s ${booted-ghcjs}/bin/ghcjs ${targetPrefix}ghc
|
|
ln -s ${booted-ghcjs}/bin/ghcjs-pkg ${targetPrefix}ghc-pkg
|
|
ln -s ${buildGHC}/bin/hsc2hs ${targetPrefix}hsc2hs
|
|
cd ..
|
|
mkdir -p lib/${targetPrefix}ghc-8.6.5
|
|
cd lib
|
|
lndir ${booted-ghcjs}/lib ${targetPrefix}ghc-8.6.5
|
|
'' + installDeps targetPrefix);
|
|
ghc884 = let buildGHC = final.buildPackages.haskell-nix.compiler.ghc884;
|
|
in let booted-ghcjs = final.callPackage ../compiler/ghcjs/ghcjs.nix {
|
|
ghcjsSrcJson = ../compiler/ghcjs/ghcjs88-src.json;
|
|
ghcjsVersion = "8.8.0.0.1";
|
|
ghc = buildGHC;
|
|
ghcVersion = "8.8.4";
|
|
compiler-nix-name = "ghc884";
|
|
}; in let targetPrefix = "js-unknown-ghcjs-"; in final.runCommand "${targetPrefix}ghc-8.8.4" {
|
|
nativeBuildInputs = [ final.xorg.lndir ];
|
|
passthru = {
|
|
inherit targetPrefix;
|
|
version = "8.8.4";
|
|
isHaskellNixCompiler = true;
|
|
enableShared = false;
|
|
inherit (booted-ghcjs) configured-src bundled-ghcjs project;
|
|
inherit booted-ghcjs buildGHC;
|
|
extraConfigureFlags = [
|
|
"--ghcjs"
|
|
"--with-ghcjs=${targetPrefix}ghc" "--with-ghcjs-pkg=${targetPrefix}ghc-pkg"
|
|
"--with-gcc=${final.buildPackages.emscripten}/bin/emcc"
|
|
];
|
|
};
|
|
# note: we'll use the buildGHCs `hsc2hs`, ghcjss wrapper just horribly breaks in this nix setup.
|
|
} (''
|
|
mkdir -p $out/bin
|
|
cd $out/bin
|
|
ln -s ${booted-ghcjs}/bin/ghcjs ${targetPrefix}ghc
|
|
ln -s ${booted-ghcjs}/bin/ghcjs-pkg ${targetPrefix}ghc-pkg
|
|
ln -s ${buildGHC}/bin/hsc2hs ${targetPrefix}hsc2hs
|
|
cd ..
|
|
mkdir -p lib/${targetPrefix}ghc-8.8.4
|
|
cd lib
|
|
lndir ${booted-ghcjs}/lib ${targetPrefix}ghc-8.8.4
|
|
'' + installDeps targetPrefix);
|
|
ghc8105 = let buildGHC = final.buildPackages.haskell-nix.compiler.ghc8105;
|
|
in let booted-ghcjs = final.callPackage ../compiler/ghcjs/ghcjs.nix {
|
|
ghcjsSrcJson = ../compiler/ghcjs/ghcjs810-src.json;
|
|
ghcjsVersion = "8.10.5"; # Must match the version in the ghcjs.cabal file
|
|
ghc = buildGHC;
|
|
ghcVersion = "8.10.5";
|
|
compiler-nix-name = "ghc8105";
|
|
}; in let targetPrefix = "js-unknown-ghcjs-"; in final.runCommand "${targetPrefix}ghc-8.10.5" {
|
|
nativeBuildInputs = [ final.xorg.lndir ];
|
|
passthru = {
|
|
inherit targetPrefix;
|
|
version = "8.10.5";
|
|
isHaskellNixCompiler = true;
|
|
enableShared = false;
|
|
inherit (booted-ghcjs) configured-src bundled-ghcjs project;
|
|
inherit booted-ghcjs buildGHC;
|
|
extraConfigureFlags = [
|
|
"--ghcjs"
|
|
"--with-ghcjs=${targetPrefix}ghc" "--with-ghcjs-pkg=${targetPrefix}ghc-pkg"
|
|
"--with-gcc=${final.buildPackages.emscripten}/bin/emcc"
|
|
];
|
|
};
|
|
# note: we'll use the buildGHCs `hsc2hs`, ghcjss wrapper just horribly breaks in this nix setup.
|
|
} (''
|
|
mkdir -p $out/bin
|
|
cd $out/bin
|
|
ln -s ${booted-ghcjs}/bin/ghcjs ${targetPrefix}ghc
|
|
ln -s ${booted-ghcjs}/bin/ghcjs-pkg ${targetPrefix}ghc-pkg
|
|
ln -s ${buildGHC}/bin/hsc2hs ${targetPrefix}hsc2hs
|
|
cd ..
|
|
mkdir -p lib/${targetPrefix}ghc-8.10.5
|
|
cd lib
|
|
lndir ${booted-ghcjs}/lib ${targetPrefix}ghc-8.10.5
|
|
'' + installDeps targetPrefix);
|
|
ghc8106 = let buildGHC = final.buildPackages.haskell-nix.compiler.ghc8106;
|
|
in let booted-ghcjs = final.callPackage ../compiler/ghcjs/ghcjs.nix {
|
|
ghcjsSrcJson = ../compiler/ghcjs/ghcjs810-src.json;
|
|
ghcjsVersion = "8.10.5"; # Must match the version in the ghcjs.cabal file
|
|
ghc = buildGHC;
|
|
ghcVersion = "8.10.6";
|
|
compiler-nix-name = "ghc8106";
|
|
}; in let targetPrefix = "js-unknown-ghcjs-"; in final.runCommand "${targetPrefix}ghc-8.10.6" {
|
|
nativeBuildInputs = [ final.xorg.lndir ];
|
|
passthru = {
|
|
inherit targetPrefix;
|
|
version = "8.10.6";
|
|
isHaskellNixCompiler = true;
|
|
enableShared = false;
|
|
inherit (booted-ghcjs) configured-src bundled-ghcjs project;
|
|
inherit booted-ghcjs buildGHC;
|
|
extraConfigureFlags = [
|
|
"--ghcjs"
|
|
"--with-ghcjs=${targetPrefix}ghc" "--with-ghcjs-pkg=${targetPrefix}ghc-pkg"
|
|
"--with-gcc=${final.buildPackages.emscripten}/bin/emcc"
|
|
];
|
|
};
|
|
# note: we'll use the buildGHCs `hsc2hs`, ghcjss wrapper just horribly breaks in this nix setup.
|
|
} (''
|
|
mkdir -p $out/bin
|
|
cd $out/bin
|
|
ln -s ${booted-ghcjs}/bin/ghcjs ${targetPrefix}ghc
|
|
ln -s ${booted-ghcjs}/bin/ghcjs-pkg ${targetPrefix}ghc-pkg
|
|
ln -s ${buildGHC}/bin/hsc2hs ${targetPrefix}hsc2hs
|
|
cd ..
|
|
mkdir -p lib/${targetPrefix}ghc-8.10.6
|
|
cd lib
|
|
lndir ${booted-ghcjs}/lib ${targetPrefix}ghc-8.10.6
|
|
'' + installDeps targetPrefix);
|
|
ghc8107 = let buildGHC = final.buildPackages.haskell-nix.compiler.ghc8107;
|
|
in let booted-ghcjs = final.callPackage ../compiler/ghcjs/ghcjs.nix {
|
|
ghcjsSrcJson = ../compiler/ghcjs/ghcjs810-src.json;
|
|
ghcjsVersion = "8.10.5"; # Must match the version in the ghcjs.cabal file
|
|
ghc = buildGHC;
|
|
ghcVersion = "8.10.7";
|
|
compiler-nix-name = "ghc8107";
|
|
}; in let targetPrefix = "js-unknown-ghcjs-"; in final.runCommand "${targetPrefix}ghc-8.10.7" {
|
|
nativeBuildInputs = [ final.xorg.lndir ];
|
|
passthru = {
|
|
inherit targetPrefix;
|
|
version = "8.10.7";
|
|
isHaskellNixCompiler = true;
|
|
enableShared = false;
|
|
inherit (booted-ghcjs) configured-src bundled-ghcjs project;
|
|
inherit booted-ghcjs buildGHC;
|
|
extraConfigureFlags = [
|
|
"--ghcjs"
|
|
"--with-ghcjs=${targetPrefix}ghc" "--with-ghcjs-pkg=${targetPrefix}ghc-pkg"
|
|
"--with-gcc=${final.buildPackages.emscripten}/bin/emcc"
|
|
];
|
|
};
|
|
# note: we'll use the buildGHCs `hsc2hs`, ghcjss wrapper just horribly breaks in this nix setup.
|
|
} (''
|
|
mkdir -p $out/bin
|
|
cd $out/bin
|
|
ln -s ${booted-ghcjs}/bin/ghcjs ${targetPrefix}ghc
|
|
ln -s ${booted-ghcjs}/bin/ghcjs-pkg ${targetPrefix}ghc-pkg
|
|
ln -s ${buildGHC}/bin/hsc2hs ${targetPrefix}hsc2hs
|
|
cd ..
|
|
mkdir -p lib/${targetPrefix}ghc-8.10.7
|
|
cd lib
|
|
lndir ${booted-ghcjs}/lib ${targetPrefix}ghc-8.10.7
|
|
'' + installDeps targetPrefix);
|
|
}))));
|
|
|
|
# Both `cabal-install` and `nix-tools` are needed for `cabalProject`
|
|
# to check materialized results. We need to take care that when
|
|
# it is doing this we do not check the materialization of the
|
|
# tools used or there will be infinite recursion.
|
|
# always has `checkMaterialization = false` to avoid infinite
|
|
# recursion.
|
|
cabal-install-tool = {compiler-nix-name, ...}@args:
|
|
(final.haskell-nix.hackage-package ({
|
|
name = "cabal-install";
|
|
version = "3.4.0.0";
|
|
index-state = final.haskell-nix.internalHackageIndexState;
|
|
materialized = ../materialized + "/${compiler-nix-name}/cabal-install";
|
|
} // args)).getComponent "exe:cabal";
|
|
nix-tools-set = { compiler-nix-name, ... }@args:
|
|
let
|
|
# Until all the dependencies build with 9.0.1 we will have to avoid
|
|
# building & testing nix-tools with 9.0.1
|
|
compiler-nix-name =
|
|
if args.compiler-nix-name == "ghc901"
|
|
then "ghc8107"
|
|
else args.compiler-nix-name;
|
|
project =
|
|
final.haskell-nix.cabalProject ({
|
|
caller = "nix-tools-set";
|
|
name = "nix-tools";
|
|
src = final.haskell-nix.sources.nix-tools;
|
|
# This is a handy way to use a local git clone of nix-tools when developing
|
|
# src = final.haskell-nix.haskellLib.cleanGit { name = "nix-tools"; src = ../../nix-tools; };
|
|
index-state = final.haskell-nix.internalHackageIndexState;
|
|
cabalProjectLocal = ''
|
|
allow-newer: Cabal:base, cryptohash-sha512:base, haskeline:base
|
|
index-state: ${final.haskell-nix.internalHackageIndexState}
|
|
'';
|
|
materialized = ../materialized + "/${compiler-nix-name}/nix-tools";
|
|
modules = [{
|
|
packages.transformers-compat.components.library.doExactConfig = true;
|
|
packages.time-compat.components.library.doExactConfig = true;
|
|
packages.time-locale-compat.components.library.doExactConfig = true;
|
|
# Make Cabal reinstallable
|
|
nonReinstallablePkgs =
|
|
[ "rts" "ghc-heap" "ghc-prim" "integer-gmp" "integer-simple" "base"
|
|
"deepseq" "array" "ghc-boot-th" "pretty" "template-haskell"
|
|
"ghc-boot"
|
|
"ghc" "Win32" "array" "binary" "bytestring" "containers"
|
|
"directory" "filepath" "ghc-boot" "ghc-compact" "ghc-prim"
|
|
"hpc"
|
|
"mtl" "parsec" "process" "text" "time" "transformers"
|
|
"unix" "xhtml"
|
|
];
|
|
}];
|
|
} // args // { inherit compiler-nix-name; });
|
|
exes =
|
|
let
|
|
package = project.getPackage "nix-tools";
|
|
in (builtins.map (name: package.getComponent "exe:${name}") [
|
|
"cabal-to-nix"
|
|
"hashes-to-nix"
|
|
"plan-to-nix"
|
|
"hackage-to-nix"
|
|
"lts-to-nix"
|
|
"stack-to-nix"
|
|
"truncate-index"
|
|
"stack-repos"
|
|
"cabal-name"
|
|
]) ++ [
|
|
(project.getComponent "hpack:exe:hpack")
|
|
];
|
|
tools = [
|
|
final.buildPackages.nix
|
|
# Double buildPackages is intentional, see comment in lib/default.nix for details.
|
|
final.buildPackages.buildPackages.gitMinimal
|
|
final.buildPackages.buildPackages.nix-prefetch-git ];
|
|
in
|
|
final.buildPackages.symlinkJoin {
|
|
name = "nix-tools";
|
|
paths = exes;
|
|
buildInputs = [ final.buildPackages.makeWrapper ];
|
|
meta.platforms = final.lib.platforms.all;
|
|
# We wrap the -to-nix executables with the executables from `tools` (e.g. nix-prefetch-git)
|
|
# so that consumers of `nix-tools` won't have to provide those tools.
|
|
postBuild = ''
|
|
for prog in stack-to-nix cabal-to-nix plan-to-nix; do
|
|
wrapProgram "$out/bin/$prog" --prefix PATH : "${final.lib.makeBinPath tools}"
|
|
done
|
|
'';
|
|
};
|
|
|
|
# Memoize the cabal-install and nix-tools derivations by adding:
|
|
# haskell-nix.cabal-install.ghcXXX
|
|
# haskell-nix.cabal-install-unchecked.ghcXXX
|
|
# haskell-nix.nix-tools.ghcXXX
|
|
# haskell-nix.nix-tools-unchecked.ghcXXX
|
|
# Using these avoids unnecessary calls to mkDerivation.
|
|
# For cabal projects we match the versions used to the compiler
|
|
# selected for the project to avoid the chance of a dependency
|
|
# another GHC version (particularly useful on macOS where
|
|
# executables are dynamically linked to GHC itself, which means
|
|
# that if you use a tool built with a different GHC you will get
|
|
# that GHC itself in your closure).
|
|
cabal-install = final.lib.mapAttrs (compiler-nix-name: _:
|
|
final.haskell-nix.cabal-install-tool { inherit compiler-nix-name; }) final.haskell-nix.compiler;
|
|
cabal-install-unchecked = final.lib.mapAttrs (compiler-nix-name: _:
|
|
final.haskell-nix.cabal-install-tool {
|
|
compiler-nix-name =
|
|
# If there is no materialized version for this GHC version fall back on
|
|
# a version of GHC for which there will be.
|
|
if __pathExists (../materialized + "/${compiler-nix-name}/cabal-install/default.nix")
|
|
then compiler-nix-name
|
|
else "ghc8105";
|
|
checkMaterialization = false;
|
|
}) final.haskell-nix.compiler;
|
|
nix-tools = final.lib.mapAttrs (compiler-nix-name: _:
|
|
final.haskell-nix.nix-tools-set { inherit compiler-nix-name; }) final.haskell-nix.compiler;
|
|
nix-tools-unchecked = final.lib.mapAttrs (compiler-nix-name: _:
|
|
final.haskell-nix.nix-tools-set {
|
|
compiler-nix-name =
|
|
# If there is no materialized version for this GHC version fall back on
|
|
# a version of GHC for which there will be.
|
|
if __pathExists (../materialized + "/${compiler-nix-name}/nix-tools/default.nix")
|
|
then compiler-nix-name
|
|
else "ghc8105";
|
|
checkMaterialization = false;
|
|
}) final.haskell-nix.compiler;
|
|
|
|
# These `internal` versions are used for:
|
|
# * `nix-tools` for stack projects (since we use `nix-tools` to process
|
|
# the `stack.yaml` file we cannot match the ghc of the project the
|
|
# way we do for cabal projects).
|
|
# * Scripts are used to update stackage and hackage
|
|
# Updating the version of GHC selected here should be fairly safe as
|
|
# there should be no difference in the behaviour of these tools.
|
|
# (stack projects on macOS may see a significant change in the
|
|
# closure size of their build dependencies due to dynamic linking).
|
|
internal-cabal-install = final.haskell-nix.cabal-install.ghc8107;
|
|
internal-nix-tools = final.haskell-nix.nix-tools.ghc8107;
|
|
|
|
# WARN: The `import ../. {}` will prevent
|
|
# any cross to work, as we will loose
|
|
# the `config` value.
|
|
# As such the following sadly won't work :(
|
|
# haskellPackages = with import ../. {}; {
|
|
# hpack = null;
|
|
# hello = (hackage-package {
|
|
# inherit (final) cabal-install;
|
|
# name = "hello"; version = "1.0.0.2";
|
|
# }).components.exes.hello;
|
|
# };
|
|
|
|
# NOTE: 8.6.5 prebuilt binaries on macOS, will yield:
|
|
#
|
|
# > Linking dist/build/cabal/cabal ...
|
|
# > Undefined symbols for architecture x86_64:
|
|
# > "_utimensat", referenced from:
|
|
# > _cazW_info in libHSdirectory-1.3.3.0.a(Posix.o)
|
|
# > ld: symbol(s) not found for architecture x86_64
|
|
# > clang-5.0: error: linker command failed with exit code 1 (use -v to see invocation)
|
|
# > `clang' failed in phase `Linker'. (Exit code: 1)
|
|
#
|
|
# hence we'll use 844 for bootstrapping for now.
|
|
|
|
|
|
# the bootstrap infra structure (pre-compiled ghc; bootstrapped cabal-install, ...)
|
|
bootstrap = with final.haskell-nix;
|
|
let
|
|
# This compiler-nix-name will only be used to build nix-tools and cabal-install
|
|
# when checking materialization of alex, happy and hscolour.
|
|
compiler-nix-name = "ghc865";
|
|
nix-tools = final.evalPackages.haskell-nix.nix-tools.${compiler-nix-name};
|
|
cabal-install = final.evalPackages.haskell-nix.cabal-install.${compiler-nix-name};
|
|
# The ghc boot compiler to use to compile alex, happy and hscolour
|
|
ghc = final.buildPackages.haskell-nix.bootstrap.compiler."${buildBootstrapper.compilerNixName}";
|
|
ghcOverride = ghc // { isHaskellNixCompiler = ghc.isHaskellNixBootCompiler; };
|
|
index-state = final.haskell-nix.internalHackageIndexState;
|
|
in {
|
|
# XXX: import ../. will throw away all other overlays, config values, ...
|
|
# this is not ideal!
|
|
# get binary compilers for bootstrapping. We'll put the eventual proper
|
|
# compilers into the same place where nix expects them.
|
|
# We mark these compilers as boot compilers to make sure they are only used
|
|
# where a boot compiler is expected.
|
|
compiler = builtins.mapAttrs (_: v:
|
|
v.overrideAttrs (drv: {
|
|
postInstall = (drv.postInstall or "") + installDeps "";
|
|
}) // {
|
|
useLLVM = false;
|
|
isHaskellNixBootCompiler = true;
|
|
}
|
|
)
|
|
(import sources.old-ghc-nix { pkgs = final; });
|
|
|
|
packages = {
|
|
# now that we have nix-tools and hpack, we can just
|
|
# use `hackage-package` to build any package from
|
|
# hackage with haskell.nix. For alex and happy we
|
|
# need to use the boot strap compiler as we need them
|
|
# to build ghcs from source.
|
|
# guardMaterializationChecks is used here so we
|
|
# can turn off materialization checks when
|
|
# building ghc itself (since GHC is a dependency
|
|
# of the materialization check it would cause
|
|
# infinite recursion).
|
|
alex-tool = args: tool buildBootstrapper.compilerNixName "alex" ({
|
|
version = "3.2.4";
|
|
inherit ghcOverride nix-tools cabal-install index-state;
|
|
materialized = ../materialized/bootstrap + "/${buildBootstrapper.compilerNixName}/alex";
|
|
} // args);
|
|
alex = bootstrap.packages.alex-tool {};
|
|
alex-unchecked = bootstrap.packages.alex-tool { checkMaterialization = false; };
|
|
happy-tool = { version ? "1.19.12", ... }@args: tool buildBootstrapper.compilerNixName "happy" ({
|
|
inherit version ghcOverride nix-tools cabal-install index-state;
|
|
materialized = ../materialized/bootstrap + "/${buildBootstrapper.compilerNixName}/happy-${version}";
|
|
} // args);
|
|
happy = bootstrap.packages.happy-tool {};
|
|
happy-unchecked = bootstrap.packages.happy-tool { checkMaterialization = false; };
|
|
# Older version needed when building ghc 8.6.5
|
|
happy-old = bootstrap.packages.happy-tool { version = "1.19.11"; };
|
|
happy-old-unchecked = bootstrap.packages.happy-tool { version = "1.19.11"; checkMaterialization = false; };
|
|
hscolour-tool = args: (hackage-package ({
|
|
compiler-nix-name = buildBootstrapper.compilerNixName;
|
|
name = "hscolour";
|
|
version = "1.24.4";
|
|
inherit ghcOverride nix-tools cabal-install index-state;
|
|
materialized = ../materialized/bootstrap + "/${buildBootstrapper.compilerNixName}/hscolour";
|
|
} // args)).getComponent "exe:HsColour";
|
|
hscolour = bootstrap.packages.hscolour-tool {};
|
|
hscolour-unchecked = bootstrap.packages.hscolour-tool { checkMaterialization = false; };
|
|
};
|
|
};
|
|
};
|
|
}
|