mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 21:21:06 +00:00
xmobar: enable all extensions by default
https://github.com/NixOS/nixpkgs/pull/2728
This commit is contained in:
parent
ce919ad3c7
commit
807482ca18
|
@ -1,6 +1,7 @@
|
|||
{ cabal, alsaCore, alsaMixer, filepath, HTTP, libmpd, libXrandr
|
||||
, mtl, parsec, regexCompat, stm, time, utf8String, wirelesstools
|
||||
, X11, X11Xft
|
||||
{ cabal, alsaCore, alsaMixer, dbus, filepath, hinotify, HTTP
|
||||
, libmpd, libXrandr, mtl, parsec, regexCompat, stm, time
|
||||
, timezoneOlson, timezoneSeries, utf8String, wirelesstools, X11
|
||||
, X11Xft
|
||||
}:
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
|
@ -10,11 +11,12 @@ cabal.mkDerivation (self: {
|
|||
isLibrary = false;
|
||||
isExecutable = true;
|
||||
buildDepends = [
|
||||
alsaCore alsaMixer filepath HTTP libmpd mtl parsec regexCompat stm
|
||||
time utf8String X11 X11Xft
|
||||
alsaCore alsaMixer dbus filepath hinotify HTTP libmpd mtl parsec
|
||||
regexCompat stm time timezoneOlson timezoneSeries utf8String X11
|
||||
X11Xft
|
||||
];
|
||||
extraLibraries = [ libXrandr wirelesstools ];
|
||||
configureFlags = "-fwith_xft -fwith_iwlib -fwith_alsa -fwith_mpd";
|
||||
configureFlags = "-fall_extensions";
|
||||
meta = {
|
||||
homepage = "http://projects.haskell.org/xmobar/";
|
||||
description = "A Minimalistic Text Based Status Bar";
|
||||
|
|
Loading…
Reference in a new issue