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