Added fbpanel - desktop panel.
svn path=/nixpkgs/branches/stdenv-updates/; revision=9879
This commit is contained in:
parent
d3884ed14d
commit
f0405cf74f
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
|
@ -3521,6 +3521,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;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user