summary refs log tree commit diff
path: root/pkgs/applications/window-managers/velox/dmenu.nix
blob: 182a290e0eeeff557343b8b5eaef2c5de3afcdab (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
36
37
{stdenv, fetchFromGitHub #, libX11, libXinerama, enableXft, libXft, zlib
, swc, wld, wayland, libxkbcommon, pixman, fontconfig
}:

with stdenv.lib;

stdenv.mkDerivation rec {
  name = "dmenu-velox-${version}";
  version = "git-2017-04-07";

  src = fetchFromGitHub {
    owner = "michaelforney";
    repo = "dmenu";
    rev = "f385d9d18813071b4b4257bf8d4d572daeda0e70";
    sha256 = "14j8jv0nlybinhzkgd6dplvng9zy8p292prlx39w0k4fm6x5nv6y";
  };

  buildInputs = [ swc wld wayland libxkbcommon pixman fontconfig ];

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

  preConfigure = [
    ''sed -i "s@PREFIX = /usr/local@PREFIX = $out@g; s@/usr/share/swc@${swc}/share/swc@g" config.mk''
  ];

  enableParallelBuilding = true;

  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; [ ];
    platforms = with stdenv.lib.platforms; all;
  };
}