From 2f9a6d648bfd8c7d39a382f55f8c299165ad9490 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Fri, 19 Oct 2018 14:24:05 +0200 Subject: [PATCH] ghc-8.6.x: disable mpd support in xmobar libmpd does not compile with the latest version of ghc. --- pkgs/development/haskell-modules/configuration-ghc-8.6.x.nix | 3 +++ 1 file changed, 3 insertions(+) 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"; + }