evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / fi / find-cursor / package.nix
blob3b9862a47dea2ba6c34b76254a4c05dc4c8a2a69
1 { lib, stdenv, fetchFromGitHub, libX11, libXdamage, libXrender, libXcomposite, libXext, installShellFiles, git }:
3 stdenv.mkDerivation rec {
4   pname = "find-cursor";
5   version = "1.8";
7   src = fetchFromGitHub {
8     owner = "arp242";
9     repo = "find-cursor";
10     rev = "v${version}";
11     sha256 = "sha256-/Dw4bOTCnpCbeI0YJ5DJ9Q2AGBognylUk7xYGn0KIA8=";
12   };
14   nativeBuildInputs = [ installShellFiles git ];
15   buildInputs = [ libX11 libXdamage libXrender libXcomposite libXext ];
16   preInstall = "mkdir -p $out/share/man/man1";
17   installFlags = [ "PREFIX=${placeholder "out"}" ];
19   meta = with lib; {
20     description = "Simple XLib program to highlight the cursor position";
21     homepage = "https://github.com/arp242/find-cursor";
22     license = licenses.mit;
23     platforms = platforms.linux;
24     maintainers = [ maintainers.yanganto ];
25     mainProgram = "find-cursor";
26   };