nixpkgs/pkgs/tools/X11/find-cursor/default.nix
2021-05-18 13:41:32 +00:00

27 lines
839 B
Nix

{ lib, stdenv, fetchFromGitHub, libX11, libXdamage, libXrender, libXcomposite, libXext, installShellFiles, git }:
stdenv.mkDerivation rec {
pname = "find-cursor";
version = "1.7";
src = fetchFromGitHub {
owner = "arp242";
repo = "find-cursor";
rev = "v${version}";
sha256 = "sha256-cFvhoEPDFLw6rsPYUF9gqAFzINewnszJEzxRK064NEU=";
};
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 ];
};
}