summary refs log tree commit diff
diff options
context:
space:
mode:
authorAntonio Yang <yanganto@gmail.com>2020-09-17 00:21:30 +0800
committerAntonio Yang <yanganto@gmail.com>2020-11-04 09:12:56 +0800
commit7e51cfadba872ee177462652767352e438b549f6 (patch)
tree48623bc4ecec2478fe4ab75350f58e037299bc7b
parente84d30d4dd63686e2a8e06b676b88af7ad722cda (diff)
downloadnixpkgs-7e51cfadba872ee177462652767352e438b549f6.tar
nixpkgs-7e51cfadba872ee177462652767352e438b549f6.tar.gz
nixpkgs-7e51cfadba872ee177462652767352e438b549f6.tar.bz2
nixpkgs-7e51cfadba872ee177462652767352e438b549f6.tar.lz
nixpkgs-7e51cfadba872ee177462652767352e438b549f6.tar.xz
nixpkgs-7e51cfadba872ee177462652767352e438b549f6.tar.zst
nixpkgs-7e51cfadba872ee177462652767352e438b549f6.zip
find-cursor: init at 1.6
Co-authored-by: Ivar <41924494+IvarWithoutBones@users.noreply.github.com>
-rw-r--r--pkgs/tools/X11/find-cursor/default.nix26
-rw-r--r--pkgs/top-level/all-packages.nix2
2 files changed, 28 insertions, 0 deletions
diff --git a/pkgs/tools/X11/find-cursor/default.nix b/pkgs/tools/X11/find-cursor/default.nix
new file mode 100644
index 00000000000..13f27457788
--- /dev/null
+++ b/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 ];
+  };
+}
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index e56325b91a1..af341fc63fe 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -321,6 +321,8 @@ in
 
   fetchMavenArtifact = callPackage ../build-support/fetchmavenartifact { };
 
+  find-cursor = callPackage ../tools/X11/find-cursor { };
+
   prefer-remote-fetch = import ../build-support/prefer-remote-fetch;
 
   global-platform-pro = callPackage ../development/tools/global-platform-pro/default.nix { };