summary refs log tree commit diff
path: root/pkgs/applications/misc/dmenu/default.nix
blob: 1ba3ee5268f7a0f2051044f7dca5ff63e3dcaa9f (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
31
32
33
34
35
{stdenv, fetchurl, libX11, libXinerama, enableXft, libXft, zlib}:

with stdenv.lib;

stdenv.mkDerivation rec {
  name = "dmenu-4.5";

  src = fetchurl {
    url = "http://dl.suckless.org/tools/${name}.tar.gz";
    sha256 = "0l58jpxrr80fmyw5pgw5alm5qry49aw6y049745wl991v2cdcb08";
  };

  xftPatch = fetchurl {
    url = "http://tools.suckless.org/dmenu/patches/${name}-xft.diff";
    sha256 = "efb4095d65e5e86f9dde97294732174409c24f319bdd4824cc22fa1404972b4f";
  };

  buildInputs = [ libX11 libXinerama ] ++ optionals enableXft [zlib libXft];

  patches = optional enableXft xftPatch;

  postPatch = ''
    sed -ri -e 's!\<(dmenu|stest)\>!'"$out/bin"'/&!g' dmenu_run
  '';

  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://tools.suckless.org/dmenu;
      license = stdenv.lib.licenses.mit;
      maintainers = with stdenv.lib.maintainers; [viric];
      platforms = with stdenv.lib.platforms; all;
  };
}