push sheeet
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

This commit is contained in:
Dark Steveneq
2025-10-09 14:15:47 +02:00
commit 646b892680
49168 changed files with 5897842 additions and 0 deletions

View File

@@ -0,0 +1,55 @@
{
lib,
stdenv,
fetchurl,
libX11,
}:
stdenv.mkDerivation rec {
pname = "unclutter";
version = "8";
src = fetchurl {
url = "https://www.ibiblio.org/pub/X11/contrib/utilities/unclutter-${version}.tar.gz";
sha256 = "33a78949a7dedf2e8669ae7b5b2c72067896497820292c96afaa60bb71d1f2a6";
};
buildInputs = [ libX11 ];
buildFlags = [
"CC=${stdenv.cc.targetPrefix}cc"
"CFLAGS=-std=c89"
];
installFlags = [
"DESTDIR=${placeholder "out"}"
"BINDIR=${placeholder "out"}/bin"
"MANPATH=${placeholder "out"}/share/man"
];
installTargets = [
"install"
"install.man"
];
preInstall = ''
mkdir -pv "$out"/{bin,share/man/man1}
'';
meta = with lib; {
description = "Hides mouse pointer while not in use";
longDescription = ''
Unclutter hides your X mouse cursor when you do not need it, to prevent
it from getting in the way. You have only to move the mouse to restore
the mouse cursor. Unclutter is very useful in tiling wm's where you do
not need the mouse often.
Just run it from your .bash_profile like that:
unclutter -idle 1 &
'';
maintainers = [ ];
platforms = platforms.unix;
license = lib.licenses.publicDomain;
mainProgram = "unclutter";
};
}