add window-manager dwm contributed by viric
svn path=/nixpkgs/trunk/; revision=12687
This commit is contained in:
parent
2d354aa6f1
commit
01979f7940
|
@ -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";
|
||||
};
|
||||
}
|
|
@ -5944,6 +5944,11 @@ let pkgs = rec {
|
|||
inherit (xlibs) libX11 libXinerama;
|
||||
};
|
||||
|
||||
dwm = import ../applications/window-managers/dwm {
|
||||
inherit fetchurl stdenv;
|
||||
inherit (xlibs) libX11 libXinerama;
|
||||
};
|
||||
|
||||
# building eclipise from source
|
||||
# experimental tested on x86_64-linux only
|
||||
eclipse_classic_src = import ../applications/editors/eclipse/eclipse_classic.nix {
|
||||
|
|
Loading…
Reference in New Issue