about summary refs log tree commit diff
path: root/pkgs/tools/X11/find-cursor/default.nix
blob: 3b9862a47dea2ba6c34b76254a4c05dc4c8a2a69 (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
{ lib, stdenv, fetchFromGitHub, libX11, libXdamage, libXrender, libXcomposite, libXext, installShellFiles, git }:

stdenv.mkDerivation rec {
  pname = "find-cursor";
  version = "1.8";

  src = fetchFromGitHub {
    owner = "arp242";
    repo = "find-cursor";
    rev = "v${version}";
    sha256 = "sha256-/Dw4bOTCnpCbeI0YJ5DJ9Q2AGBognylUk7xYGn0KIA8=";
  };

  nativeBuildInputs = [ installShellFiles git ];
  buildInputs = [ libX11 libXdamage libXrender libXcomposite libXext ];
  preInstall = "mkdir -p $out/share/man/man1";
  installFlags = [ "PREFIX=${placeholder "out"}" ];

  meta = with lib; {
    description = "Simple XLib program to highlight the cursor position";
    homepage = "https://github.com/arp242/find-cursor";
    license = licenses.mit;
    platforms = platforms.linux;
    maintainers = [ maintainers.yanganto ];
    mainProgram = "find-cursor";
  };
}