2021-11-06 22:05:33 +00:00
|
|
|
{ lib, buildKodiAddon, fetchFromGitHub, fetchzip, dateutil, requests, routing, vfs-libarchive, archive_tool, youtube }:
|
|
|
|
|
|
|
|
buildKodiAddon rec {
|
|
|
|
pname = "iagl";
|
|
|
|
namespace = "plugin.program.iagl";
|
2022-01-16 17:43:54 +00:00
|
|
|
version = "3.0.5";
|
2021-11-06 22:05:33 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "zach-morris";
|
|
|
|
repo = "plugin.program.iagl";
|
2022-01-16 17:43:54 +00:00
|
|
|
rev = version;
|
|
|
|
sha256 = "sha256-Ha9wUHURPql6xew5bUd33DpgRt+8vwIHocxPopmXj4c=";
|
2021-11-06 22:05:33 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
dateutil
|
|
|
|
requests
|
|
|
|
routing
|
|
|
|
vfs-libarchive
|
|
|
|
archive_tool
|
|
|
|
youtube
|
|
|
|
];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
homepage = "https://github.com/zach-morris/plugin.program.iagl";
|
|
|
|
description = "Launch Games from the Internet using Kodi";
|
|
|
|
license = licenses.gpl3Plus;
|
|
|
|
maintainers = teams.kodi.members;
|
|
|
|
};
|
|
|
|
}
|