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

View File

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