aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/tools/X11/find-cursor/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'infra/libkookie/nixpkgs/pkgs/tools/X11/find-cursor/default.nix')
-rw-r--r--infra/libkookie/nixpkgs/pkgs/tools/X11/find-cursor/default.nix26
1 files changed, 26 insertions, 0 deletions
diff --git a/infra/libkookie/nixpkgs/pkgs/tools/X11/find-cursor/default.nix b/infra/libkookie/nixpkgs/pkgs/tools/X11/find-cursor/default.nix
new file mode 100644
index 000000000000..13f274577887
--- /dev/null
+++ b/infra/libkookie/nixpkgs/pkgs/tools/X11/find-cursor/default.nix
@@ -0,0 +1,26 @@
+{ stdenv, fetchFromGitHub, libX11, libXdamage, libXrender, libXcomposite, libXext, installShellFiles, git }:
+
+stdenv.mkDerivation rec {
+ pname = "find-cursor";
+ version = "1.6";
+
+ src = fetchFromGitHub {
+ owner = "arp242";
+ repo = "find-cursor";
+ rev = "v${version}";
+ sha256 = "13lpcxklv9ayqapyk9pmwxkinhxah5hkr6n0jc2m5hm68nh220w1";
+ };
+
+ nativeBuildInputs = [ installShellFiles git ];
+ buildInputs = [ libX11 libXdamage libXrender libXcomposite libXext ];
+ preInstall = "mkdir -p $out/share/man/man1";
+ installFlags = "PREFIX=${placeholder "out"}";
+
+ meta = with stdenv.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 ];
+ };
+}