mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
fdd821f1ef
These overrides allow us to build amazonka packages, but we have no way to actually use those build results within Nix, because the replaced GHC core libraries collide with the real ones when we try to compose a ghc-with-packages environment. Closes https://github.com/NixOS/nixpkgs/issues/6584.
101 lines
3.1 KiB
Nix
101 lines
3.1 KiB
Nix
{ pkgs }:
|
||
|
||
with import ./lib.nix { inherit pkgs; };
|
||
|
||
self: super: {
|
||
|
||
# Disable GHC 7.8.x core libraries.
|
||
array = null;
|
||
base = null;
|
||
binary = null;
|
||
bin-package-db = null;
|
||
bytestring = null;
|
||
Cabal = null;
|
||
containers = null;
|
||
deepseq = null;
|
||
directory = null;
|
||
filepath = null;
|
||
ghc-prim = null;
|
||
haskeline = null;
|
||
haskell2010 = null;
|
||
haskell98 = null;
|
||
hoopl = null;
|
||
hpc = null;
|
||
integer-gmp = null;
|
||
old-locale = null;
|
||
old-time = null;
|
||
pretty = null;
|
||
process = null;
|
||
rts = null;
|
||
template-haskell = null;
|
||
terminfo = null;
|
||
time = null;
|
||
transformers = null;
|
||
unix = null;
|
||
xhtml = null;
|
||
|
||
# mtl 2.2.x needs the latest transformers.
|
||
mtl_2_2_1 = super.mtl_2_2_1.override { transformers = self.transformers_0_4_3_0; };
|
||
|
||
# Configure build for mtl 2.1.x.
|
||
mtl-compat = addBuildDepend (enableCabalFlag super.mtl-compat "two-point-one") self.transformers-compat;
|
||
|
||
# Idris requires mtl 2.2.x.
|
||
idris = overrideCabal (super.idris.overrideScope (self: super: {
|
||
mkDerivation = drv: super.mkDerivation (drv // { doCheck = false; });
|
||
transformers = super.transformers_0_4_3_0;
|
||
transformers-compat = disableCabalFlag super.transformers-compat "three";
|
||
haskeline = self.haskeline_0_7_1_3;
|
||
mtl = super.mtl_2_2_1;
|
||
})) (drv: {
|
||
jailbreak = true; # idris is scared of lens 4.7
|
||
patchPhase = "find . -name '*.hs' -exec sed -i -s 's|-Werror||' {} +";
|
||
}); # warning: "Module ‘Control.Monad.Error’ is deprecated"
|
||
|
||
# Depends on time == 0.1.5, which we don't have.
|
||
HStringTemplate_0_8_1 = dontDistribute super.HStringTemplate_0_8_1;
|
||
|
||
# This is part of bytestring in our compiler.
|
||
bytestring-builder = dontHaddock super.bytestring-builder;
|
||
|
||
# Won't compile against mtl 2.1.x.
|
||
imports = super.imports.override { mtl = self.mtl_2_2_1; };
|
||
|
||
# Newer versions require mtl 2.2.x.
|
||
mtl-prelude = self.mtl-prelude_1_0_3;
|
||
|
||
# The test suite pulls in mtl 2.2.x
|
||
command-qq = dontCheck super.command-qq;
|
||
|
||
# Doesn't support GHC < 7.10.x.
|
||
ghc-exactprint = dontDistribute super.ghc-exactprint;
|
||
|
||
# Newer versions require transformers 0.4.x.
|
||
seqid = super.seqid_0_1_0;
|
||
seqid-streams = super.seqid-streams_0_1_0;
|
||
|
||
# Need binary >= 0.7.2, but our compiler has only 0.7.1.0.
|
||
hosc = dontDistribute super.hosc;
|
||
tidal-midi = dontDistribute super.tidal-midi;
|
||
|
||
# These packages need mtl 2.2.x directly or indirectly via dependencies.
|
||
apiary-purescript = markBroken super.apiary-purescript;
|
||
clac = dontDistribute super.clac;
|
||
highlighter2 = markBroken super.highlighter2;
|
||
hypher = markBroken super.hypher;
|
||
miniforth = markBroken super.miniforth;
|
||
purescript = markBroken super.purescript;
|
||
xhb-atom-cache = markBroken super.xhb-atom-cache;
|
||
xhb-ewmh = markBroken super.xhb-ewmh;
|
||
yesod-purescript = markBroken super.yesod-purescript;
|
||
yet-another-logger = markBroken super.yet-another-logger;
|
||
|
||
# https://github.com/frosch03/arrowVHDL/issues/2
|
||
ArrowVHDL = markBroken super.ArrowVHDL;
|
||
|
||
# https://ghc.haskell.org/trac/ghc/ticket/9625
|
||
wai-middleware-preprocessor = dontCheck super.wai-middleware-preprocessor;
|
||
incremental-computing = dontCheck super.incremental-computing;
|
||
|
||
}
|