2014-05-23 09:13:30 -07:00
|
|
|
{ cabal, alsaCore, alsaMixer, dbus, filepath, hinotify, HTTP
|
|
|
|
, libmpd, libXrandr, mtl, parsec, regexCompat, stm, time
|
|
|
|
, timezoneOlson, timezoneSeries, utf8String, wirelesstools, X11
|
|
|
|
, X11Xft
|
2011-12-10 14:30:49 -08:00
|
|
|
}:
|
2008-04-15 13:03:25 -07:00
|
|
|
|
2011-08-13 16:38:44 -07:00
|
|
|
cabal.mkDerivation (self: {
|
2008-04-15 13:03:25 -07:00
|
|
|
pname = "xmobar";
|
2014-03-15 01:25:58 -07:00
|
|
|
version = "0.20.1";
|
|
|
|
sha256 = "16jfgn6ciqxrwj6qjhbcpms7mzlbxfaxyxfxp64xvnw626xlpjvk";
|
2011-08-13 16:38:44 -07:00
|
|
|
isLibrary = false;
|
|
|
|
isExecutable = true;
|
2012-02-14 09:00:37 -08:00
|
|
|
buildDepends = [
|
2014-05-23 09:13:30 -07:00
|
|
|
alsaCore alsaMixer dbus filepath hinotify HTTP libmpd mtl parsec
|
|
|
|
regexCompat stm time timezoneOlson timezoneSeries utf8String X11
|
|
|
|
X11Xft
|
2012-06-03 11:52:38 -07:00
|
|
|
];
|
2014-01-11 03:24:25 -08:00
|
|
|
extraLibraries = [ libXrandr wirelesstools ];
|
2014-05-23 09:13:30 -07:00
|
|
|
configureFlags = "-fall_extensions";
|
2008-04-15 13:03:25 -07:00
|
|
|
meta = {
|
2011-08-13 16:38:44 -07:00
|
|
|
homepage = "http://projects.haskell.org/xmobar/";
|
|
|
|
description = "A Minimalistic Text Based Status Bar";
|
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
2011-08-14 03:44:23 -07:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2012-03-24 03:21:28 -07:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2008-04-15 13:03:25 -07:00
|
|
|
};
|
|
|
|
})
|