about summary refs log tree commit diff
path: root/pkgs/development/haskell-modules/configuration-ghc-head.nix
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2019-01-29 10:41:34 +0100
committerPeter Simons <simons@cryp.to>2019-01-29 10:59:32 +0100
commitdd98e07fed9abe82f43dec5497b7978d413266ff (patch)
tree40705696e776449a8790f3958b5deb8835e29a98 /pkgs/development/haskell-modules/configuration-ghc-head.nix
parentf20b8bf9b7bc7e968d8f6da4c20ec847b4a4fee0 (diff)
downloadnixlib-dd98e07fed9abe82f43dec5497b7978d413266ff.tar
nixlib-dd98e07fed9abe82f43dec5497b7978d413266ff.tar.gz
nixlib-dd98e07fed9abe82f43dec5497b7978d413266ff.tar.bz2
nixlib-dd98e07fed9abe82f43dec5497b7978d413266ff.tar.lz
nixlib-dd98e07fed9abe82f43dec5497b7978d413266ff.tar.xz
nixlib-dd98e07fed9abe82f43dec5497b7978d413266ff.tar.zst
nixlib-dd98e07fed9abe82f43dec5497b7978d413266ff.zip
stylish-cabal: fix build with GHC 8.4.x (and clean up overrides)
Unfortunately, more recent compiler versions are unable to build this package
because of its dependency on the old haddock-library version.
Diffstat (limited to 'pkgs/development/haskell-modules/configuration-ghc-head.nix')
-rw-r--r--pkgs/development/haskell-modules/configuration-ghc-head.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/pkgs/development/haskell-modules/configuration-ghc-head.nix b/pkgs/development/haskell-modules/configuration-ghc-head.nix
index 4fc3a314e448..d4ff521273d5 100644
--- a/pkgs/development/haskell-modules/configuration-ghc-head.nix
+++ b/pkgs/development/haskell-modules/configuration-ghc-head.nix
@@ -79,4 +79,7 @@ self: super: {
   # Fix build with ghc 8.6.x.
   git-annex = appendPatch super.git-annex ./patches/git-annex-fix-ghc-8.6.x-build.patch;
 
+  # https://github.com/pikajude/stylish-cabal/issues/11
+  stylish-cabal = markBrokenVersion "0.4.1.0" super.stylish-cabal;
+
 }