about summary refs log tree commit diff
path: root/pkgs/applications/window-managers/fbpanel/4.12.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/applications/window-managers/fbpanel/4.12.nix')
-rw-r--r--pkgs/applications/window-managers/fbpanel/4.12.nix22
1 files changed, 22 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 000000000000..4e08102af80a
--- /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.	
+";
+	};
+}