2020-09-30 08:50:24 +00:00
|
|
|
{ pkgs, haskellLib }:
|
|
|
|
|
|
|
|
with haskellLib;
|
|
|
|
|
2021-12-24 20:12:56 +00:00
|
|
|
let
|
|
|
|
inherit (pkgs.stdenv.hostPlatform) isDarwin;
|
|
|
|
in
|
|
|
|
|
2020-09-30 08:50:24 +00:00
|
|
|
self: super: {
|
|
|
|
|
2021-11-23 15:11:37 +00:00
|
|
|
llvmPackages = pkgs.lib.dontRecurseIntoAttrs self.ghc.llvmPackages;
|
2020-09-30 08:50:24 +00:00
|
|
|
|
|
|
|
# Disable GHC 9.0.x core libraries.
|
|
|
|
array = null;
|
|
|
|
base = null;
|
|
|
|
binary = null;
|
|
|
|
bytestring = null;
|
|
|
|
Cabal = null;
|
|
|
|
containers = null;
|
|
|
|
deepseq = null;
|
|
|
|
directory = null;
|
|
|
|
exceptions = null;
|
|
|
|
filepath = null;
|
|
|
|
ghc-bignum = null;
|
|
|
|
ghc-boot = null;
|
|
|
|
ghc-boot-th = null;
|
|
|
|
ghc-compact = null;
|
|
|
|
ghc-heap = null;
|
|
|
|
ghc-prim = null;
|
|
|
|
ghci = null;
|
|
|
|
haskeline = null;
|
|
|
|
hpc = null;
|
|
|
|
integer-gmp = null;
|
|
|
|
libiserv = null;
|
|
|
|
mtl = null;
|
|
|
|
parsec = null;
|
|
|
|
pretty = null;
|
|
|
|
process = null;
|
|
|
|
rts = null;
|
|
|
|
stm = null;
|
|
|
|
template-haskell = null;
|
2022-07-25 21:42:29 +00:00
|
|
|
# GHC only builds terminfo if it is a native compiler
|
2023-03-02 12:23:03 +00:00
|
|
|
terminfo = if pkgs.stdenv.hostPlatform == pkgs.stdenv.buildPlatform then null else self.terminfo_0_4_1_6;
|
2020-09-30 08:50:24 +00:00
|
|
|
text = null;
|
|
|
|
time = null;
|
|
|
|
transformers = null;
|
|
|
|
unix = null;
|
2022-04-29 13:27:02 +00:00
|
|
|
# GHC only bundles the xhtml library if haddock is enabled, check if this is
|
|
|
|
# still the case when updating: https://gitlab.haskell.org/ghc/ghc/-/blob/0198841877f6f04269d6050892b98b5c3807ce4c/ghc.mk#L463
|
2023-07-24 20:29:06 +00:00
|
|
|
xhtml = if self.ghc.hasHaddock or true then null else self.xhtml_3000_3_0_0;
|
2020-09-30 08:50:24 +00:00
|
|
|
|
2023-07-01 11:10:07 +00:00
|
|
|
# Need the Cabal-syntax-3.6.0.0 fake package for Cabal < 3.8 to allow callPackage and the constraint solver to work
|
|
|
|
Cabal-syntax = self.Cabal-syntax_3_6_0_0;
|
2023-07-01 17:31:29 +00:00
|
|
|
# These core package only exist for GHC >= 9.4. The best we can do is feign
|
|
|
|
# their existence to callPackages, but their is no shim for lower GHC versions.
|
|
|
|
system-cxx-std-lib = null;
|
2023-07-01 11:10:07 +00:00
|
|
|
|
2020-10-22 09:14:15 +00:00
|
|
|
# Jailbreaks & Version Updates
|
2022-02-15 18:25:49 +00:00
|
|
|
|
2023-07-01 11:57:38 +00:00
|
|
|
# For GHC < 9.4, some packages need data-array-byte as an extra dependency
|
|
|
|
primitive = addBuildDepends [ self.data-array-byte ] super.primitive;
|
|
|
|
hashable = addBuildDepends [
|
|
|
|
self.data-array-byte
|
|
|
|
self.base-orphans
|
|
|
|
] super.hashable;
|
|
|
|
|
2020-10-22 09:14:15 +00:00
|
|
|
hashable-time = doJailbreak super.hashable-time;
|
2022-12-13 00:02:01 +00:00
|
|
|
tuple = addBuildDepend self.base-orphans super.tuple;
|
2021-01-02 18:40:16 +00:00
|
|
|
vector-th-unbox = doJailbreak super.vector-th-unbox;
|
2020-10-16 20:37:09 +00:00
|
|
|
|
2022-02-18 13:50:04 +00:00
|
|
|
doctest = dontCheck super.doctest;
|
2020-10-16 20:37:09 +00:00
|
|
|
# Apply patches from head.hackage.
|
2021-10-26 10:20:34 +00:00
|
|
|
language-haskell-extract = appendPatch (pkgs.fetchpatch {
|
2020-10-16 20:37:09 +00:00
|
|
|
url = "https://gitlab.haskell.org/ghc/head.hackage/-/raw/master/patches/language-haskell-extract-0.2.4.patch";
|
|
|
|
sha256 = "0rgzrq0513nlc1vw7nw4km4bcwn4ivxcgi33jly4a7n3c1r32v1f";
|
2021-10-26 10:20:34 +00:00
|
|
|
}) (doJailbreak super.language-haskell-extract);
|
2020-10-16 20:37:09 +00:00
|
|
|
|
2022-12-13 00:02:01 +00:00
|
|
|
haskell-language-server = let
|
|
|
|
# These aren't included in hackage-packages.nix because hackage2nix is configured for GHC 9.2, under which these plugins aren't supported.
|
2022-12-16 12:49:16 +00:00
|
|
|
# See https://github.com/NixOS/nixpkgs/pull/205902 for why we use `self.<package>.scope`
|
2022-12-24 16:46:42 +00:00
|
|
|
additionalDeps = with self.haskell-language-server.scope; [
|
|
|
|
hls-haddock-comments-plugin
|
|
|
|
(unmarkBroken hls-splice-plugin)
|
2022-12-30 16:21:48 +00:00
|
|
|
hls-tactics-plugin
|
2022-12-24 16:46:42 +00:00
|
|
|
];
|
2022-12-13 00:02:01 +00:00
|
|
|
in addBuildDepends additionalDeps (super.haskell-language-server.overrideScope (lself: lsuper: {
|
2022-09-20 00:49:35 +00:00
|
|
|
# Needed for modern ormolu and fourmolu.
|
|
|
|
# Apply this here and not in common, because other ghc versions offer different Cabal versions.
|
|
|
|
Cabal = lself.Cabal_3_6_3_0;
|
2022-12-13 00:02:01 +00:00
|
|
|
}));
|
|
|
|
|
2023-02-18 17:27:23 +00:00
|
|
|
# Needs to use ghc-lib due to incompatible GHC
|
|
|
|
ghc-tags = doDistribute (addBuildDepend self.ghc-lib self.ghc-tags_1_5);
|
|
|
|
|
2022-12-13 00:02:01 +00:00
|
|
|
# This package is marked as unbuildable on GHC 9.2, so hackage2nix doesn't include any dependencies.
|
2022-12-16 12:49:16 +00:00
|
|
|
# See https://github.com/NixOS/nixpkgs/pull/205902 for why we use `self.<package>.scope`
|
2022-12-24 16:46:42 +00:00
|
|
|
hls-haddock-comments-plugin = unmarkBroken (addBuildDepends (with self.hls-haddock-comments-plugin.scope; [
|
2022-12-13 00:02:01 +00:00
|
|
|
ghc-exactprint ghcide hls-plugin-api hls-refactor-plugin lsp-types unordered-containers
|
2022-12-24 16:46:42 +00:00
|
|
|
]) super.hls-haddock-comments-plugin);
|
2022-09-20 00:49:35 +00:00
|
|
|
|
2022-12-30 16:21:48 +00:00
|
|
|
hls-tactics-plugin = unmarkBroken (addBuildDepends (with self.hls-tactics-plugin.scope; [
|
|
|
|
aeson extra fingertree generic-lens ghc-exactprint ghc-source-gen ghcide
|
|
|
|
hls-graph hls-plugin-api hls-refactor-plugin hyphenation lens lsp megaparsec
|
|
|
|
parser-combinators prettyprinter refinery retrie syb unagi-chan unordered-containers
|
|
|
|
]) super.hls-tactics-plugin);
|
|
|
|
|
2022-02-26 09:07:37 +00:00
|
|
|
# Test suite sometimes segfaults with GHC 9.0.1 and 9.0.2
|
|
|
|
# https://github.com/ekmett/reflection/issues/51
|
|
|
|
# https://gitlab.haskell.org/ghc/ghc/-/issues/21141
|
|
|
|
reflection = dontCheck super.reflection;
|
|
|
|
|
2021-06-11 22:43:21 +00:00
|
|
|
# Disable tests pending resolution of
|
|
|
|
# https://github.com/Soostone/retry/issues/71
|
|
|
|
retry = dontCheck super.retry;
|
|
|
|
|
2022-12-24 16:46:42 +00:00
|
|
|
ghc-api-compat = unmarkBroken super.ghc-api-compat;
|
|
|
|
|
2021-09-17 08:54:44 +00:00
|
|
|
# 2021-09-18: cabal2nix does not detect the need for ghc-api-compat.
|
2021-10-26 10:20:34 +00:00
|
|
|
hiedb = overrideCabal (old: {
|
2021-09-17 08:54:44 +00:00
|
|
|
libraryHaskellDepends = old.libraryHaskellDepends ++ [self.ghc-api-compat];
|
2021-10-26 10:20:34 +00:00
|
|
|
}) super.hiedb;
|
2021-09-17 08:54:44 +00:00
|
|
|
|
|
|
|
# 2021-09-18: https://github.com/haskell/haskell-language-server/issues/2206
|
|
|
|
# Restrictive upper bound on ormolu
|
|
|
|
hls-ormolu-plugin = doJailbreak super.hls-ormolu-plugin;
|
|
|
|
|
2021-12-05 13:02:30 +00:00
|
|
|
# https://github.com/lspitzner/butcher/issues/7
|
|
|
|
butcher = doJailbreak super.butcher;
|
2021-12-24 20:12:56 +00:00
|
|
|
|
|
|
|
# We use a GHC patch to support the fix for https://github.com/fpco/inline-c/issues/127
|
|
|
|
# which means that the upstream cabal file isn't allowed to add the flag.
|
|
|
|
inline-c-cpp =
|
|
|
|
(if isDarwin then appendConfigureFlags ["--ghc-option=-fcompact-unwind"] else x: x)
|
|
|
|
super.inline-c-cpp;
|
2022-05-31 10:41:31 +00:00
|
|
|
|
|
|
|
# 2022-05-31: weeder 2.3.0 requires GHC 9.2
|
|
|
|
weeder = doDistribute self.weeder_2_3_1;
|
2022-10-11 15:16:49 +00:00
|
|
|
|
|
|
|
# Restrictive upper bound on base and containers
|
|
|
|
sv2v = doJailbreak super.sv2v;
|
2022-12-13 00:02:01 +00:00
|
|
|
|
|
|
|
# Later versions only support GHC >= 9.2
|
|
|
|
ghc-exactprint = self.ghc-exactprint_0_6_4;
|
2022-12-30 16:21:48 +00:00
|
|
|
|
2022-12-30 17:04:51 +00:00
|
|
|
retrie = dontCheck self.retrie_1_1_0_0;
|
2022-12-30 16:21:48 +00:00
|
|
|
|
2022-12-13 00:02:01 +00:00
|
|
|
apply-refact = self.apply-refact_0_9_3_0;
|
2022-12-28 13:10:41 +00:00
|
|
|
|
2022-12-30 16:21:48 +00:00
|
|
|
hls-hlint-plugin = super.hls-hlint-plugin.override {
|
|
|
|
inherit (self) apply-refact;
|
|
|
|
};
|
|
|
|
|
2022-12-28 13:10:41 +00:00
|
|
|
# Needs OneTuple for ghc < 9.2
|
|
|
|
binary-orphans = addBuildDepends [ self.OneTuple ] super.binary-orphans;
|
2020-09-30 08:50:24 +00:00
|
|
|
}
|