Files
nixpkgs/pkgs/by-name/fi/find-cursor/package.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

48 lines
929 B
Nix

{
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";
};
}