add window-manager dwm contributed by viric

svn path=/nixpkgs/trunk/; revision=12687
This commit is contained in:
Marc Weber
2008-08-21 20:44:08 +00:00
parent 2d354aa6f1
commit 01979f7940
2 changed files with 22 additions and 0 deletions
@@ -0,0 +1,17 @@
args: with args; stdenv.mkDerivation {
name = "dwm-5.1";
src = fetchurl {
url = http://code.suckless.org/dl/dwm/dwm-5.1.tar.gz;
sha256 = "d8dca894c4805a845baca1c3f9b16299e1eaeab661fd3827b374e57b4c603bf8";
};
buildInputs = [ libX11 libXinerama ];
buildPhase = " make ";
meta = { homepage = "www.suckless.org";
description = "dynamic window manager for X";
license="MIT";
};
}