summary refs log tree commit diff
path: root/pkgs/tools/misc/hhpc
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/tools/misc/hhpc')
-rw-r--r--pkgs/tools/misc/hhpc/default.nix28
1 files changed, 28 insertions, 0 deletions
diff --git a/pkgs/tools/misc/hhpc/default.nix b/pkgs/tools/misc/hhpc/default.nix
new file mode 100644
index 00000000000..5f02121e59f
--- /dev/null
+++ b/pkgs/tools/misc/hhpc/default.nix
@@ -0,0 +1,28 @@
+{lib, stdenv, fetchFromGitHub, xorg, pkg-config}:
+
+stdenv.mkDerivation rec {
+  pname = "hhpc";
+  version = "0.3.1";
+
+  src = fetchFromGitHub {
+    owner = "aktau";
+    repo = "hhpc";
+    rev = "v${version}";
+    sha256 = "1djsw1r38mh6zx0rbyn2cfa931hyddib4fl3i27c4z7xinl709ss";
+  };
+
+  nativeBuildInputs = [ pkg-config ];
+  buildInputs = [ xorg.libX11 ];
+
+  installPhase = ''
+      mkdir -p $out/bin
+      cp hhpc $out/bin/
+  '';
+
+  meta = with lib; {
+    description = "Hides the mouse pointer in X11";
+    maintainers = with maintainers; [ nico202 ];
+    platforms = platforms.unix;
+    license = lib.licenses.bsd3;
+  };
+}