summary refs log tree commit diff
path: root/pkgs/applications/window-managers/i3/easyfocus.nix
blob: f72ef13173cace2f5d82400ec194cbc6db75ab67 (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
{ stdenv, fetchFromGitHub, pkgconfig, xproto, libxcb, xcbutilkeysyms
, xorg , i3ipc-glib , glib
}:

stdenv.mkDerivation rec {
  name = "i3easyfocus-${version}";
  version = "20180622";

  src = fetchFromGitHub {
    owner = "cornerman";
    repo = "i3-easyfocus";
    rev = "3631d5af612d58c3d027f59c86b185590bd78ae1";
    sha256 = "1wgknmmm7iz0wxsdh29gmx4arizva9101pzhnmac30bmixf3nzhr";
  };

  nativeBuildInputs = [ pkgconfig ];
  buildInputs = [ libxcb xcbutilkeysyms xproto xorg.libX11.dev i3ipc-glib glib.dev ];

  # Makefile has no rule for 'install'
  installPhase = ''
    mkdir -p $out/bin
    cp i3-easyfocus $out/bin
  '';

  meta = with stdenv.lib; {
    description = "Focus and select windows in i3";
    homepage = https://github.com/cornerman/i3-easyfocus;
    maintainers = with maintainers; [teto];
    license = licenses.gpl3;
    platforms = platforms.linux;
  };
}