mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-23 14:13:35 +00:00
31 lines
740 B
Nix
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;
|
|
};
|
|
}
|