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