Files
nixpkgs/pkgs/by-name/ke/keym/package.nix
Dark Steveneq 646b892680
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
push sheeet
2025-10-09 14:15:47 +02:00

40 lines
720 B
Nix

{
lib,
stdenv,
fetchFromGitHub,
libX11,
libXtst,
libXi,
}:
stdenv.mkDerivation {
pname = "keym";
version = "unstable-2022-07-10";
src = fetchFromGitHub {
owner = "cwkx";
repo = "keym";
rev = "67a6d39d45e17221353e06c39283b5636b46d25c";
hash = "sha256-v2eS7un2ABnpWBwuKq+0CeLX8ivtlNUjM2jRboKumOE=";
};
buildInputs = [
libX11
libXtst
libXi
];
makeFlags = [
"PREFIX=$(out)"
];
meta = with lib; {
homepage = "https://github.com/cwkx/keym";
description = "C tool to control mouse with keyboard for X11";
license = licenses.mit;
platforms = platforms.linux;
mainProgram = "keym";
maintainers = with maintainers; [ CompileTime ];
};
}