
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.
38 lines
781 B
Nix
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";
|
|
};
|
|
}
|