depot/third_party/nixpkgs/pkgs/tools/X11/xbanish/default.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

42 lines
1.2 KiB
Nix

{stdenv, fetchFromGitHub, libX11, libXi, libXt, libXfixes, libXext}:
stdenv.mkDerivation rec {
version = "1.6";
pname = "xbanish";
buildInputs = [
libX11 libXi libXt libXfixes libXext
];
src = fetchFromGitHub {
owner = "jcs";
repo = pname;
rev = "v${version}";
sha256 = "0vp8ja68hpmqkl61zyjar3czhmny1hbm74m8f393incfz1ymr3i8";
};
makeFlags=[ "PREFIX=$(out)" ];
preInstall = ''
mkdir -p $out/bin $out/man/man1
'';
meta = {
description = "Hides mouse pointer while not in use";
longDescription = ''
xbanish hides the mouse cursor when you start typing, and shows it again when
the mouse cursor moves or a mouse button is pressed. This is similar to
xterm's pointerMode setting, but xbanish works globally in the X11 session.
unclutter's -keystroke mode is supposed to do this, but it's broken[0]. I
looked into fixing it, but the unclutter source code is terrible, so I wrote
xbanish.
The name comes from ratpoison's "banish" command that sends the cursor to the
corner of the screen.
'';
license = stdenv.lib.licenses.bsd3;
maintainers = [stdenv.lib.maintainers.choochootrain];
platforms = stdenv.lib.platforms.linux;
};
}