880dcc2c64
By now, it happened twice that a commit broke GHC and thus all Haskell packages we have in Nixpkgs. On such an occasion, I receive well in excess of 3000 notification e-mails from Hydra, and then I receive another 3000 e-mails after the bug has been fixed. Under these circumstances, subscribing to these notifications makes no sense for me. svn path=/nixpkgs/trunk/; revision=33392
24 lines
683 B
Nix
24 lines
683 B
Nix
{ cabal, filepath, libXrandr, mtl, parsec, stm, time, utf8String
|
|
, X11, X11Xft
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "xmobar";
|
|
version = "0.14";
|
|
sha256 = "1y26b2a5v9hxv1zmjcb4m8j9qkqdn74mqc3q58vgp5cav45rphvh";
|
|
isLibrary = false;
|
|
isExecutable = true;
|
|
buildDepends = [
|
|
filepath mtl parsec stm time utf8String X11 X11Xft
|
|
];
|
|
extraLibraries = [ libXrandr ];
|
|
configureFlags = "-fwith_xft";
|
|
meta = {
|
|
homepage = "http://projects.haskell.org/xmobar/";
|
|
description = "A Minimalistic Text Based Status Bar";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|