Added fbpanel - desktop panel.
svn path=/nixpkgs/trunk/; revision=9774
This commit is contained in:
parent
0a830a172b
commit
ebfbf03a25
22
pkgs/applications/window-managers/fbpanel/4.12.nix
Normal file
22
pkgs/applications/window-managers/fbpanel/4.12.nix
Normal 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.
|
||||||
|
";
|
||||||
|
};
|
||||||
|
}
|
2
pkgs/applications/window-managers/fbpanel/default.nix
Normal file
2
pkgs/applications/window-managers/fbpanel/default.nix
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
args :
|
||||||
|
(import (__toPath ((toString ./JustNothing/.. )+"/"+args.version+".nix"))) args
|
@ -3713,6 +3713,14 @@ rec {
|
|||||||
xftSupport = true;
|
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 {
|
fetchmail = import ../applications/misc/fetchmail {
|
||||||
inherit stdenv fetchurl;
|
inherit stdenv fetchurl;
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user