about summary refs log tree commit diff
path: root/pkgs/tools/X11/focus/default.nix
blob: 20c7e2e25d90a5c0167053e2a46ab3af1335542e (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
{ lib
, stdenv
, fetchFromGitHub
, libX11
, libXinerama
}:

stdenv.mkDerivation rec {
  pname = "focus";
  version = "unstable-2021-02-23";

  src = fetchFromGitHub {
    owner = "phillbush";
    repo = "focus";
    rev = "fed2fdbd3f73b192882d97aeb5b1cea681bb7d85";
    sha256 = "sha256-IDiUXindzv5Ng5oCTyUlj2il/2kLvXG4YhgiYp7ZebQ=";
  };

  buildInputs = [ libX11 libXinerama ];

  makeFlags = [ "PREFIX=\${out}" ];

  meta = with lib; {
    description = "Focus window, workspace or monitor by direction or cycle through them";
    longDescription = ''
      A collection of utilities that change the focus of windows, workspaces or
      monitors.
    '';
    homepage = "https://github.com/phillbush/focus";
    license = licenses.publicDomain;
    maintainers = with maintainers; [ azahi ];
    platforms = platforms.unix;
  };
}