summary refs log tree commit diff
path: root/pkgs/development/haskell-modules
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2018-10-19 14:24:05 +0200
committerPeter Simons <simons@cryp.to>2018-10-19 14:44:23 +0200
commit2f9a6d648bfd8c7d39a382f55f8c299165ad9490 (patch)
treedbe2f3a3d195827959ef02d44b6af23945cd346b /pkgs/development/haskell-modules
parentb5c725f122fb9d10ccb57cccda71334fd2e5b461 (diff)
downloadnixlib-2f9a6d648bfd8c7d39a382f55f8c299165ad9490.tar
nixlib-2f9a6d648bfd8c7d39a382f55f8c299165ad9490.tar.gz
nixlib-2f9a6d648bfd8c7d39a382f55f8c299165ad9490.tar.bz2
nixlib-2f9a6d648bfd8c7d39a382f55f8c299165ad9490.tar.lz
nixlib-2f9a6d648bfd8c7d39a382f55f8c299165ad9490.tar.xz
nixlib-2f9a6d648bfd8c7d39a382f55f8c299165ad9490.tar.zst
nixlib-2f9a6d648bfd8c7d39a382f55f8c299165ad9490.zip
ghc-8.6.x: disable mpd support in xmobar
libmpd does not compile with the latest version of ghc.
Diffstat (limited to 'pkgs/development/haskell-modules')
-rw-r--r--pkgs/development/haskell-modules/configuration-ghc-8.6.x.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/pkgs/development/haskell-modules/configuration-ghc-8.6.x.nix b/pkgs/development/haskell-modules/configuration-ghc-8.6.x.nix
index 0a666658abfa..ca2c8849dc64 100644
--- a/pkgs/development/haskell-modules/configuration-ghc-8.6.x.nix
+++ b/pkgs/development/haskell-modules/configuration-ghc-8.6.x.nix
@@ -127,4 +127,7 @@ self: super: {
   # Break out of "yaml >=0.10.4.0 && <0.11".
   stack = doJailbreak super.stack;
 
+  # https://github.com/vimus/libmpd-haskell/issues/109
+  xmobar = disableCabalFlag (super.xmobar.override { libmpd = null; }) "with_mpd";
+
 }