Merge pull request #264430 from Compile-Time/master

keym: init at unstable-2022-07-10
This commit is contained in:
Masum Reza 2024-06-22 20:39:48 +05:30 committed by GitHub
commit 3c831e9939
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 40 additions and 0 deletions

View File

@ -3962,6 +3962,12 @@
githubId = 40290417;
name = "Seb Blair";
};
CompileTime = {
email = "socialcoms@posteo.de";
github = "Compile-Time";
githubId = 18414241;
name = "Andreas Erdes";
};
confus = {
email = "con-f-use@gmx.net";
github = "con-f-use";

View File

@ -0,0 +1,34 @@
{ 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 ];
};
}