Merge pull request #298586 from spitulax/update-keymapper

keymapper: 3.0.0 -> 3.5.3
This commit is contained in:
Pol Dellaiera 2024-03-24 22:36:46 +01:00 committed by GitHub
commit 5f18b7f22c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 14 additions and 3 deletions

View File

@ -18452,6 +18452,15 @@
githubId = 950799;
name = "Tomasz Czyż";
};
spitulax = {
name = "Bintang Adiputra Pratama";
email = "bintangadiputrapratama@gmail.com";
github = "spitulax";
githubId = 96517350;
keys = [{
fingerprint = "652F FAAD 5CB8 AF1D 3F96 9521 929E D6C4 0414 D3F5";
}];
};
spoonbaker = {
github = "Spoonbaker";
githubId = 47164123;

View File

@ -8,17 +8,18 @@
, pkg-config
, udev
, wayland
, libxkbcommon
}:
stdenv.mkDerivation (finalAttrs: {
pname = "keymapper";
version = "3.0.0";
version = "3.5.3";
src = fetchFromGitHub {
owner = "houmain";
repo = "keymapper";
rev = finalAttrs.version;
hash = "sha256-X2Qk/cAczdkteB+6kyURGjvm1Ryio6WHj3Ga2POosCA=";
hash = "sha256-CfZdLeWgeNwy9tEJ3UDRplV0sRcKE4J6d3CxC9gqdmE=";
};
# all the following must be in nativeBuildInputs
@ -30,6 +31,7 @@ stdenv.mkDerivation (finalAttrs: {
libX11
udev
libusb1
libxkbcommon
];
meta = {
@ -38,7 +40,7 @@ stdenv.mkDerivation (finalAttrs: {
homepage = "https://github.com/houmain/keymapper";
license = lib.licenses.gpl3Only;
mainProgram = "keymapper";
maintainers = with lib.maintainers; [ dit7ya ];
maintainers = with lib.maintainers; [ dit7ya spitulax ];
platforms = lib.platforms.linux;
};
})