Added fbpanel - desktop panel.

svn path=/nixpkgs/trunk/; revision=9774
This commit is contained in:
Michael Raskin 2007-11-22 04:23:27 +00:00
parent 0a830a172b
commit ebfbf03a25
3 changed files with 32 additions and 0 deletions

View file

@ -0,0 +1,22 @@
args : with args;
with builderDefs {
src = /* put a fetchurl here */
fetchurl {
url = http://garr.dl.sourceforge.net/sourceforge/fbpanel/fbpanel-4.12.tgz;
sha256 = "0zv0zkq6w4h7dk0ji8bm9cqpj2qxv3ss161mqg9y68shvxvmfrlz";
};
buildInputs = [libX11 gtk pkgconfig libXmu libXpm
libpng libjpeg libtiff librsvg];
configureFlags = [];
} null; /* null is a terminator for sumArgs */
stdenv.mkDerivation rec {
name = "fbpanel";
builder = writeScript (name + "-builder")
(textClosure [doConfigure doMakeInstall doForceShare doPropagate]);
meta = {
description = "
Just a desktop panel.
";
};
}

View file

@ -0,0 +1,2 @@
args :
(import (__toPath ((toString ./JustNothing/.. )+"/"+args.version+".nix"))) args

View file

@ -3713,6 +3713,14 @@ rec {
xftSupport = true;
};
fbpanelFun = lib.sumArgs (import ../applications/window-managers/fbpanel) {
inherit fetchurl stdenv builderDefs pkgconfig libpng libjpeg libtiff librsvg;
inherit (gtkLibs) gtk;
inherit (xlibs) libX11 libXmu libXpm;
};
fbpanel = fbpanelFun {version="4.12";} null;
fetchmail = import ../applications/misc/fetchmail {
inherit stdenv fetchurl;
};