kodi.packages.keymap: init at 1.1.3+matrix.1

This commit is contained in:
Aaron Andersen 2021-11-02 21:02:11 -04:00
parent 39479cc20d
commit 55cbb8d0b8
2 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,24 @@
{ lib, addonDir, buildKodiAddon, fetchzip, defusedxml, kodi-six }:
buildKodiAddon rec {
pname = "keymap";
namespace = "script.keymap";
version = "1.1.3+matrix.1";
src = fetchzip {
url = "https://mirrors.kodi.tv/addons/matrix/${namespace}/${namespace}-${version}.zip";
sha256 = "1icrailzpf60nw62xd0khqdp66dnr473m2aa9wzpmkk3qj1ay6jv";
};
propagatedBuildInputs = [
defusedxml
kodi-six
];
meta = with lib; {
homepage = "https://github.com/tamland/xbmc-keymap-editor";
description = "A GUI for configuring mappings for remotes, keyboard and other inputs supported by Kodi";
license = licenses.gpl3Plus;
maintainers = teams.kodi.members;
};
}

View File

@ -72,6 +72,8 @@ let self = rec {
joystick = callPackage ../applications/video/kodi-packages/joystick { };
keymap = callPackage ../applications/video/kodi-packages/keymap { };
netflix = callPackage ../applications/video/kodi-packages/netflix { };
svtplay = callPackage ../applications/video/kodi-packages/svtplay { };