2014-03-11 11:48:51 +01:00
|
|
|
{ cabal, alsaCore, alsaMixer, filepath, HTTP, 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-03-11 11:48:51 +01:00
|
|
|
alsaCore alsaMixer filepath HTTP mtl parsec regexCompat stm time
|
2014-01-11 12:24:25 +01:00
|
|
|
utf8String X11 X11Xft
|
2012-06-03 20:52:38 +02:00
|
|
|
];
|
2014-01-11 12:24:25 +01:00
|
|
|
extraLibraries = [ libXrandr wirelesstools ];
|
2013-12-17 18:38:12 +01:00
|
|
|
configureFlags = "-fwith_xft -fwith_iwlib -fwith_alsa";
|
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
|
|
|
};
|
|
|
|
})
|