forked from mirrors/nixpkgs
X11 version 1.4.2, added xmobar a minimalistic status bar written in haskell (integrates fine with xmonad)
svn path=/nixpkgs/trunk/; revision=11645
This commit is contained in:
parent
5f5fb2ce5d
commit
cfc9624c08
12
pkgs/applications/misc/xmobar/default.nix
Normal file
12
pkgs/applications/misc/xmobar/default.nix
Normal file
|
@ -0,0 +1,12 @@
|
|||
{cabal, X11}:
|
||||
|
||||
cabal.mkDerivation (self : {
|
||||
pname = "xmobar";
|
||||
name = "${self.fname}";
|
||||
version = "0.8";
|
||||
sha256 = "88aa5bc0715e2592282e5897bc7938f16580804f56757bc71ed3762bf86c9415";
|
||||
extraBuildInputs = [X11];
|
||||
meta = {
|
||||
description = "xmobar is a minimalistic text based status bar";
|
||||
};
|
||||
})
|
|
@ -4,8 +4,8 @@ assert xineramaSupport -> (libXinerama != null && libXext != null);
|
|||
|
||||
cabal.mkDerivation (self : {
|
||||
pname = "X11";
|
||||
version = "1.4.1";
|
||||
sha256 = "e51038541415686f0e278ccdbc0b2373cd11f212de99023b7b8f8e776aa09f79";
|
||||
version = "1.4.2";
|
||||
sha256 = "7a37ba1adee9c30a27013ea7058e907c2348ef08eaa79c9895e62e4f0d73d2aa";
|
||||
propagatedBuildInputs = [libX11] ++ (if xineramaSupport then [libXinerama libXext] else []);
|
||||
meta = {
|
||||
description = "A Haskell binding to the X11 graphics library";
|
||||
|
|
|
@ -5882,6 +5882,10 @@ let pkgs = rec {
|
|||
stdenv = overrideGCC stdenv gcc34; # due to problems with gcc 4.x
|
||||
};
|
||||
|
||||
xmobar = import ../applications/misc/xmobar {
|
||||
inherit cabal X11;
|
||||
};
|
||||
|
||||
xmonad = import ../applications/window-managers/xmonad {
|
||||
inherit cabal X11;
|
||||
inherit (xlibs) xmessage;
|
||||
|
|
Loading…
Reference in a new issue