about summary refs log tree commit diff
path: root/pkgs/applications/window-managers/dwm/default.nix
blob: 125428c449cec3d3219ffa7da94038dd70c7a5d4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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";
         };
}