hugin: move to openexr_3 (#367087)
[NixPkgs.git] / pkgs / applications / video / kodi / addons / keymap / default.nix
blobc5866e993749db23f459a808a1ab9a7cc5e33d0c
2   lib,
3   rel,
4   buildKodiAddon,
5   fetchzip,
6   addonUpdateScript,
7   defusedxml,
8   kodi-six,
9 }:
11 buildKodiAddon rec {
12   pname = "keymap";
13   namespace = "script.keymap";
14   version = "1.3.0";
16   src = fetchzip {
17     url = "https://mirrors.kodi.tv/addons/${lib.toLower rel}/${namespace}/${namespace}-${version}.zip";
18     sha256 = "sha256-931iJv9wsY20pXckvTlEhxGCDFSBHonpGO2c2OYiqrI=";
19   };
21   propagatedBuildInputs = [
22     defusedxml
23     kodi-six
24   ];
26   passthru = {
27     updateScript = addonUpdateScript {
28       attrPath = "kodi.packages.keymap";
29     };
30   };
32   meta = with lib; {
33     homepage = "https://github.com/tamland/xbmc-keymap-editor";
34     description = "GUI for configuring mappings for remotes, keyboard and other inputs supported by Kodi";
35     license = licenses.gpl3Plus;
36     maintainers = teams.kodi.members;
37   };