keymapper: 3.0.0 -> 3.5.3

The latest version of keymapper in nixpkgs was out of date.
Changelog: https://github.com/houmain/keymapper/releases
This commit is contained in:
Bintang 2024-03-24 16:45:13 +07:00
parent db9099eb19
commit 22c49eb905
No known key found for this signature in database
GPG Key ID: 929ED6C40414D3F5
1 changed files with 5 additions and 3 deletions

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;
};
})