about summary refs log tree commit diff
path: root/pkgs/applications/misc/dmenu
diff options
context:
space:
mode:
authorMarc Weber <marco-oweber@gmx.de>2008-08-06 20:39:01 +0000
committerMarc Weber <marco-oweber@gmx.de>2008-08-06 20:39:01 +0000
commit9e55727832c2f1b775a546e13549f98926c4fb90 (patch)
treed8481e7c72b3d06ea3c016a16ff20c1b811160e6 /pkgs/applications/misc/dmenu
parent692c5a62a45223ea49dd3041decf3b1141124c88 (diff)
Added:
* dmenu
* gftp
* micropolis
* byacc as a build-time dependency for micropolis
contributed by baldo <baldo@quimby.lan>

svn path=/nixpkgs/trunk/; revision=12526
Diffstat (limited to 'pkgs/applications/misc/dmenu')
-rw-r--r--pkgs/applications/misc/dmenu/default.nix19
1 files changed, 19 insertions, 0 deletions
diff --git a/pkgs/applications/misc/dmenu/default.nix b/pkgs/applications/misc/dmenu/default.nix
new file mode 100644
index 0000000000000..1505a22a6c974
--- /dev/null
+++ b/pkgs/applications/misc/dmenu/default.nix
@@ -0,0 +1,19 @@
+args: with args;
+stdenv.mkDerivation {
+  name = "dmenu-3.8";
+
+  src = fetchurl {
+    url = http://code.suckless.org/dl/tools/dmenu-3.8.tar.gz;
+    sha256 = "6d111a0e4d970df827f6e3c8ff60f5c96fdac4805f8100d508087859dc4f158b";
+  };
+
+  buildInputs = [ libX11 libXinerama ];
+
+  preConfigure = [ ''sed -i "s@PREFIX = /usr/local@PREFIX = $out@g" config.mk'' ];
+
+  meta = { 
+      description = "a generic, highly customizable, and efficient menu for the X Window System";
+      homepage = http://www.suckless.org/programs/dmenu.html;
+      license = "MIT";
+  };
+}