Merge pull request #144936 from aanderse/kodi.packages.iagl
kodi.packages.iagl: init at 1101521-2
This commit is contained in:
commit
cd465ef283
3 changed files with 62 additions and 0 deletions
|
@ -0,0 +1,28 @@
|
|||
{ lib, buildKodiAddon, fetchFromGitHub, vfs-libarchive }:
|
||||
buildKodiAddon rec {
|
||||
pname = "archive_tool";
|
||||
namespace = "script.module.archive_tool";
|
||||
version = "2.0.3";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "zach-morris";
|
||||
repo = "script.module.archive_tool";
|
||||
rev = version;
|
||||
sha256 = "0hbkyk59xxfjv6vzfjplahmqxi5564qjlwyq6k8ijy6jjcwnd3p7";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
vfs-libarchive
|
||||
];
|
||||
|
||||
passthru = {
|
||||
pythonPath = "lib";
|
||||
};
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/zach-morris/script.module.archive_tool";
|
||||
description = "A set of common python functions to work with the Kodi archive virtual file system (vfs) binary addons";
|
||||
license = licenses.gpl3Plus;
|
||||
maintainers = teams.kodi.members;
|
||||
};
|
||||
}
|
30
pkgs/applications/video/kodi-packages/iagl/default.nix
Normal file
30
pkgs/applications/video/kodi-packages/iagl/default.nix
Normal file
|
@ -0,0 +1,30 @@
|
|||
{ lib, buildKodiAddon, fetchFromGitHub, fetchzip, dateutil, requests, routing, vfs-libarchive, archive_tool, youtube }:
|
||||
|
||||
buildKodiAddon rec {
|
||||
pname = "iagl";
|
||||
namespace = "plugin.program.iagl";
|
||||
version = "1101521-2";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "zach-morris";
|
||||
repo = "plugin.program.iagl";
|
||||
rev = "30e82eec1a909b31767f0e298cf77fc970b256d3";
|
||||
sha256 = "11y05i5f7lzik23w2kr52jdgr8db3gin8i683sy1hzxlmplk4699";
|
||||
};
|
||||
|
||||
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;
|
||||
};
|
||||
}
|
|
@ -72,6 +72,8 @@ let self = rec {
|
|||
snes = callPackage ../applications/video/kodi-packages/controllers { controller = "snes"; };
|
||||
};
|
||||
|
||||
iagl = callPackage ../applications/video/kodi-packages/iagl { };
|
||||
|
||||
libretro = callPackage ../applications/video/kodi-packages/libretro { };
|
||||
|
||||
libretro-genplus = callPackage ../applications/video/kodi-packages/libretro-genplus { inherit genesis-plus-gx; };
|
||||
|
@ -112,6 +114,8 @@ let self = rec {
|
|||
|
||||
# addon packages (dependencies)
|
||||
|
||||
archive_tool = callPackage ../applications/video/kodi-packages/archive_tool { };
|
||||
|
||||
certifi = callPackage ../applications/video/kodi-packages/certifi { };
|
||||
|
||||
chardet = callPackage ../applications/video/kodi-packages/chardet { };
|
||||
|
|
Loading…
Reference in a new issue