aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/haskell-modules/configuration-ghc-8.8.x.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/haskell-modules/configuration-ghc-8.8.x.nix')
-rw-r--r--nixpkgs/pkgs/development/haskell-modules/configuration-ghc-8.8.x.nix21
1 files changed, 19 insertions, 2 deletions
diff --git a/nixpkgs/pkgs/development/haskell-modules/configuration-ghc-8.8.x.nix b/nixpkgs/pkgs/development/haskell-modules/configuration-ghc-8.8.x.nix
index c23b15ffef3..a2562e44527 100644
--- a/nixpkgs/pkgs/development/haskell-modules/configuration-ghc-8.8.x.nix
+++ b/nixpkgs/pkgs/development/haskell-modules/configuration-ghc-8.8.x.nix
@@ -41,6 +41,13 @@ self: super: {
unix = null;
xhtml = null;
+ # Hasura 1.3.1
+ # Because of ghc-heap-view, profiling needs to be disabled.
+ graphql-engine = overrideCabal (super.graphql-engine) (drv: {
+ # GHC 8.8.x needs a revert of https://github.com/hasura/graphql-engine/commit/a77bb0570f4210fb826985e17a84ddcc4c95d3ea
+ patches = [ ./patches/hasura-884-compat.patch ];
+ });
+
# GHC 8.8.x can build haddock version 2.23.*
haddock = self.haddock_2_23_1;
haddock-api = self.haddock-api_2_23_1;
@@ -54,7 +61,6 @@ self: super: {
async = doJailbreak super.async;
ChasingBottoms = doJailbreak super.ChasingBottoms;
chell = doJailbreak super.chell;
- cryptohash-sha256 = doJailbreak super.cryptohash-sha256;
Diff = dontCheck super.Diff;
doctest = doJailbreak super.doctest;
hashable = doJailbreak super.hashable;
@@ -74,7 +80,6 @@ self: super: {
# TODO: remove when upstream accepts https://github.com/snapframework/io-streams-haproxy/pull/17
io-streams-haproxy = doJailbreak super.io-streams-haproxy; # base >=4.5 && <4.13
snap-server = doJailbreak super.snap-server;
- xmobar = doJailbreak super.xmobar;
exact-pi = doJailbreak super.exact-pi;
time-compat = doJailbreak super.time-compat;
http-media = doJailbreak super.http-media;
@@ -109,4 +114,16 @@ self: super: {
# cabal-fmt requires Cabal3
cabal-fmt = super.cabal-fmt.override { Cabal = self.Cabal_3_2_0_0; };
+ # liquidhaskell does not support ghc version 8.8.x.
+ liquid = markBroken super.liquid;
+ liquid-base = markBroken super.liquid-base;
+ liquid-bytestring = markBroken super.liquid-bytestring;
+ liquid-containers = markBroken super.liquid-containers;
+ liquid-ghc-prim = markBroken super.liquid-ghc-prim;
+ liquid-parallel = markBroken super.liquid-parallel;
+ liquid-platform = markBroken super.liquid-platform;
+ liquid-prelude = markBroken super.liquid-prelude;
+ liquid-vector = markBroken super.liquid-vector;
+ liquidhaskell = markBroken super.liquidhaskell;
+
}