Michael Daniels f8776aff47
treewide: remove maintainers with deleted GitHub accounts
Each of these maintainers came up in maintainers/scripts/check-maintainer-usernames.

I have manually verified that each of their IDs and usernames 404 when using the API calls
https://api.github.com/user/$ID, https://api.github.com/users/$USERNAME,
and https://api.github.com/users/$USERNAME/starred.
2025-06-26 10:02:59 -04:00

38 lines
781 B
Nix

{
xorg,
lib,
stdenv,
libev,
fetchFromGitHub,
pkg-config,
}:
stdenv.mkDerivation rec {
pname = "xmousepasteblock";
version = "1.4";
src = fetchFromGitHub {
owner = "milaq";
repo = "XMousePasteBlock";
hash = "sha256-uHlHGVnIro6X4kRp79ibtqMmiv2XQT+zgbQagUxdB0c=";
rev = version;
};
makeFlags = [
"PREFIX=$(out)"
"CC=${stdenv.cc.targetPrefix}cc"
];
buildInputs = with xorg; [
libX11
libXext
libXi
libev
];
nativeBuildInputs = [ pkg-config ];
meta = with lib; {
description = "Middle mouse button primary X selection/clipboard paste disabler";
homepage = "https://github.com/milaq/XMousePasteBlock";
license = lib.licenses.gpl2Only;
maintainers = [ ];
mainProgram = "xmousepasteblock";
};
}