about summary refs log tree commit diff
path: root/pkgs/applications/window-managers
diff options
context:
space:
mode:
authorMichael Raskin <7c6f434c@mail.ru>2007-11-22 04:23:27 +0000
committerMichael Raskin <7c6f434c@mail.ru>2007-11-22 04:23:27 +0000
commitebfbf03a250a213e541fbeeaaae185f07d1d42bf (patch)
tree0170e0c0ff91f4d7d379a684aca7912be043a55c /pkgs/applications/window-managers
parent0a830a172bddce37d2810d4f9706abd40db85527 (diff)
Added fbpanel - desktop panel.
svn path=/nixpkgs/trunk/; revision=9774
Diffstat (limited to 'pkgs/applications/window-managers')
-rw-r--r--pkgs/applications/window-managers/fbpanel/4.12.nix22
-rw-r--r--pkgs/applications/window-managers/fbpanel/default.nix2
2 files changed, 24 insertions, 0 deletions
diff --git a/pkgs/applications/window-managers/fbpanel/4.12.nix b/pkgs/applications/window-managers/fbpanel/4.12.nix
new file mode 100644
index 0000000000000..4e08102af80ae
--- /dev/null
+++ b/pkgs/applications/window-managers/fbpanel/4.12.nix
@@ -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.	
+";
+	};
+}
diff --git a/pkgs/applications/window-managers/fbpanel/default.nix b/pkgs/applications/window-managers/fbpanel/default.nix
new file mode 100644
index 0000000000000..c8e4bcf95456a
--- /dev/null
+++ b/pkgs/applications/window-managers/fbpanel/default.nix
@@ -0,0 +1,2 @@
+args : 
+(import (__toPath ((toString ./JustNothing/.. )+"/"+args.version+".nix"))) args