nixpkgs/pkgs/applications/video/kodi/addons/iagl/default.nix
2022-10-12 16:00:16 +02:00

31 lines
740 B
Nix

{ lib, buildKodiAddon, fetchFromGitHub, dateutil, requests, routing, vfs-libarchive, archive_tool, youtube }:
buildKodiAddon rec {
pname = "iagl";
namespace = "plugin.program.iagl";
version = "3.0.5";
src = fetchFromGitHub {
owner = "zach-morris";
repo = "plugin.program.iagl";
rev = version;
sha256 = "sha256-Ha9wUHURPql6xew5bUd33DpgRt+8vwIHocxPopmXj4c=";
};
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;
};
}