From a7b67d93c12a72e1b22734755014adee056e4257 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benno=20F=C3=BCnfst=C3=BCck?= Date: Sat, 17 May 2014 21:00:28 +0200 Subject: [PATCH] haskell-xmobar: build with mpd support --- pkgs/applications/misc/xmobar/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/misc/xmobar/default.nix b/pkgs/applications/misc/xmobar/default.nix index a7aeed339e2..d631b28a67f 100644 --- a/pkgs/applications/misc/xmobar/default.nix +++ b/pkgs/applications/misc/xmobar/default.nix @@ -1,5 +1,5 @@ { cabal, alsaCore, alsaMixer, filepath, HTTP, libXrandr, mtl -, parsec, regexCompat, stm, time, utf8String, wirelesstools, X11 +, parsec, regexCompat, stm, time, utf8String, wirelesstools, X11, libmpd , X11Xft }: @@ -11,10 +11,10 @@ cabal.mkDerivation (self: { isExecutable = true; buildDepends = [ alsaCore alsaMixer filepath HTTP mtl parsec regexCompat stm time - utf8String X11 X11Xft + utf8String X11 X11Xft libmpd ]; extraLibraries = [ libXrandr wirelesstools ]; - configureFlags = "-fwith_xft -fwith_iwlib -fwith_alsa"; + configureFlags = "-fwith_xft -fwith_iwlib -fwith_alsa -fwith_mpd"; meta = { homepage = "http://projects.haskell.org/xmobar/"; description = "A Minimalistic Text Based Status Bar";