mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-31 09:14:28 +00:00
Merge pull request #264430 from Compile-Time/master
keym: init at unstable-2022-07-10
This commit is contained in:
commit
3c831e9939
@ -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";
|
||||
|
34
pkgs/by-name/ke/keym/package.nix
Normal file
34
pkgs/by-name/ke/keym/package.nix
Normal 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 ];
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user