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
|
|
|
|
xhtml = if self.ghc.hasHaddock or true then null else self.xhtml_3000_2_2_1;
|
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;
|
|
|
|
|
2020-10-22 09:14:15 +00:00
|
|
|
# Jailbreaks & Version Updates
|
2022-02-15 18:25:49 +00:00
|
|
|
|
|
|
|
# This `doJailbreak` can be removed once the following PR is released to Hackage:
|
|
|
|
# https://github.com/thsutton/aeson-diff/pull/58
|
|
|
|
aeson-diff = doJailbreak super.aeson-diff;
|
|
|
|
|
2020-10-22 09:14:15 +00:00
|
|
|
async = doJailbreak super.async;
|
2021-01-02 18:37:11 +00:00
|
|
|
data-fix = doJailbreak super.data-fix;
|
2020-10-16 20:37:09 +00:00
|
|
|
dec = doJailbreak super.dec;
|
|
|
|
ed25519 = doJailbreak super.ed25519;
|
2021-02-18 19:15:47 +00:00
|
|
|
hackage-security = doJailbreak super.hackage-security;
|
2022-11-26 05:47:42 +00:00
|
|
|
hashable =
|
|
|
|
pkgs.lib.pipe
|
|
|
|
super.hashable
|
|
|
|
[ (overrideCabal (drv: { postPatch = "sed -i -e 's,integer-gmp .*<1.1,integer-gmp < 2,' hashable.cabal"; }))
|
|
|
|
doJailbreak
|
|
|
|
dontCheck
|
2022-11-26 05:49:41 +00:00
|
|
|
(addBuildDepend self.base-orphans)
|
2022-11-26 05:47:42 +00:00
|
|
|
];
|
2020-10-22 09:14:15 +00:00
|
|
|
hashable-time = doJailbreak super.hashable-time;
|
2021-10-26 10:20:34 +00:00
|
|
|
HTTP = overrideCabal (drv: { postPatch = "sed -i -e 's,! Socket,!Socket,' Network/TCP.hs"; }) (doJailbreak super.HTTP);
|
|
|
|
integer-logarithms = overrideCabal (drv: { postPatch = "sed -i -e 's,integer-gmp <1.1,integer-gmp < 2,' integer-logarithms.cabal"; }) (doJailbreak super.integer-logarithms);
|
2020-10-22 09:14:15 +00:00
|
|
|
lukko = doJailbreak super.lukko;
|
2020-10-16 20:37:09 +00:00
|
|
|
parallel = doJailbreak super.parallel;
|
2021-01-02 18:37:11 +00:00
|
|
|
primitive = doJailbreak (dontCheck super.primitive);
|
2020-10-16 20:37:09 +00:00
|
|
|
regex-posix = doJailbreak super.regex-posix;
|
2020-10-22 09:14:15 +00:00
|
|
|
resolv = doJailbreak super.resolv;
|
2020-10-16 20:37:09 +00:00
|
|
|
singleton-bool = doJailbreak super.singleton-bool;
|
2020-10-22 09:14:15 +00:00
|
|
|
split = doJailbreak super.split;
|
2020-10-16 20:37:09 +00:00
|
|
|
tar = doJailbreak super.tar;
|
2020-10-22 09:14:15 +00:00
|
|
|
time-compat = doJailbreak super.time-compat;
|
2022-12-13 00:02:01 +00:00
|
|
|
tuple = addBuildDepend self.base-orphans super.tuple;
|
2021-01-02 18:37:11 +00:00
|
|
|
vector-binary-instances = doJailbreak super.vector-binary-instances;
|
2021-01-02 18:40:16 +00:00
|
|
|
vector-th-unbox = doJailbreak super.vector-th-unbox;
|
2020-10-16 20:37:09 +00:00
|
|
|
zlib = doJailbreak super.zlib;
|
2021-11-08 15:05:38 +00:00
|
|
|
# 2021-11-08: Fixed in autoapply-0.4.2
|
2022-02-18 13:50:04 +00:00
|
|
|
autoapply = doJailbreak super.autoapply;
|
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);
|
|
|
|
|
2020-10-22 09:14:15 +00:00
|
|
|
# The test suite depends on ChasingBottoms, which is broken with ghc-9.0.x.
|
|
|
|
unordered-containers = dontCheck super.unordered-containers;
|
|
|
|
|
2021-03-12 19:35:11 +00:00
|
|
|
# The test suite seems pretty broken.
|
|
|
|
base64-bytestring = dontCheck super.base64-bytestring;
|
|
|
|
|
2021-06-10 13:35:50 +00:00
|
|
|
# GHC 9.0.x doesn't like `import Spec (main)` in Main.hs
|
|
|
|
# https://github.com/snoyberg/mono-traversable/issues/192
|
|
|
|
mono-traversable = dontCheck super.mono-traversable;
|
|
|
|
|
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
|
|
|
}
|