summary refs log tree commit diff
path: root/pkgs/applications/window-managers/dwm/default.nix
blob: 82eb9e56935f63e6fea6d40cc4a57fd449b40d65 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{stdenv, fetchurl, libX11, libXinerama, patches ? []}:

let
  name = "dwm-6.0";
in
stdenv.mkDerivation {
  inherit name;
 
  src = fetchurl {
    url = "http://dl.suckless.org/dwm/${name}.tar.gz";
    sha256 = "0mpbivy9j80l1jqq4bd4g4z8s5c54fxrjj44avmfwncjwqylifdj";
  };
 
  buildInputs = [ libX11 libXinerama ];
 
  prePatch = ''sed -i "s@/usr/local@$out@" config.mk'';

  # Allow users set their own list of patches
  patches = [ ./confnotify-6.0.patch ] ++ patches;

  buildPhase = " make ";
 
  meta = {
    homepage = "www.suckless.org";
    description = "Dynamic window manager for X";
    license = "MIT";
    maintainers = with stdenv.lib.maintainers; [viric];
    platforms = with stdenv.lib.platforms; all;
  };
}