forked from mirrors/nixpkgs
33 lines
861 B
Nix
33 lines
861 B
Nix
{ lib, buildKodiAddon, fetchzip, addonUpdateScript, six, requests, inputstreamhelper }:
|
|
|
|
buildKodiAddon rec {
|
|
pname = "youtube";
|
|
namespace = "plugin.video.youtube";
|
|
version = "6.8.14+matrix.1";
|
|
|
|
src = fetchzip {
|
|
url = "https://mirrors.kodi.tv/addons/matrix/${namespace}/${namespace}-${version}.zip";
|
|
sha256 = "1a18whh3fisprwipwhxf26kc958sxhwpvs8pxwq2sq96vr7b4xq7";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
six
|
|
requests
|
|
inputstreamhelper
|
|
];
|
|
|
|
passthru = {
|
|
pythonPath = "resources/lib";
|
|
updateScript = addonUpdateScript {
|
|
attrPath = "kodi.packages.youtube";
|
|
};
|
|
};
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/anxdpanic/plugin.video.youtube";
|
|
description = "YouTube is one of the biggest video-sharing websites of the world";
|
|
license = licenses.gpl2Only;
|
|
maintainers = teams.kodi.members;
|
|
};
|
|
}
|