biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / applications / video / kodi / addons / iagl / default.nix
blob90698a10cf9f68ea1e249b2e565724a94ecb2c37
1 { lib, buildKodiAddon, fetchFromGitHub, dateutil, requests, routing, vfs-libarchive, archive_tool, youtube, infotagger }:
3 buildKodiAddon rec {
4   pname = "iagl";
5   namespace = "plugin.program.iagl";
6   version = "3.0.9";
8   src = fetchFromGitHub {
9     owner = "zach-morris";
10     repo = "plugin.program.iagl";
11     rev = version;
12     sha256 = "sha256-b8nO3D/xTnj/5UDshGlIJdiHd75VhIlkrGUi0vkZqG4=";
13   };
15   propagatedBuildInputs = [
16     dateutil
17     requests
18     routing
19     vfs-libarchive
20     archive_tool
21     youtube
22     infotagger
23   ];
25   meta = with lib; {
26     homepage = "https://github.com/zach-morris/plugin.program.iagl";
27     description = "Launch Games from the Internet using Kodi";
28     license = licenses.gpl3Plus;
29     maintainers = teams.kodi.members;
30   };