biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / applications / video / kodi / addons / keymap / default.nix
blob4254763d53611956cea1f2bd9422cb8539502317
1 { lib, rel, buildKodiAddon, fetchzip, addonUpdateScript, defusedxml, kodi-six }:
3 buildKodiAddon rec {
4   pname = "keymap";
5   namespace = "script.keymap";
6   version = "1.2.1";
8   src = fetchzip {
9     url = "https://mirrors.kodi.tv/addons/${lib.toLower rel}/${namespace}/${namespace}-${version}.zip";
10     sha256 = "sha256-AtIufZbOi3MW7aSOAlON8csJheJqAbuBtKIX0sX6zIw=";
11   };
13   propagatedBuildInputs = [
14     defusedxml
15     kodi-six
16   ];
18   passthru = {
19     updateScript = addonUpdateScript {
20       attrPath = "kodi.packages.keymap";
21     };
22   };
24   meta = with lib; {
25     homepage = "https://github.com/tamland/xbmc-keymap-editor";
26     description = "GUI for configuring mappings for remotes, keyboard and other inputs supported by Kodi";
27     license = licenses.gpl3Plus;
28     maintainers = teams.kodi.members;
29   };