summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/video/kodi-packages/youtube
diff options
context:
space:
mode:
authorAndersonTorres <torres.anderson.85@protonmail.com>2021-12-18 22:34:47 -0300
committerAndersonTorres <torres.anderson.85@protonmail.com>2021-12-18 22:34:47 -0300
commit4ec32d1ba344253edb654567df4b0a2794d4fd7e (patch)
tree3c69ec5481d404f617ad55e28bb761360348f9f1 /pkgs/applications/video/kodi-packages/youtube
parentcf66057e81c0327efd905d5f6316124b56eee515 (diff)
kodi: move kodi-packages/ to kodi/addons/
Diffstat (limited to 'pkgs/applications/video/kodi-packages/youtube')
-rw-r--r--pkgs/applications/video/kodi-packages/youtube/default.nix32
1 files changed, 0 insertions, 32 deletions
diff --git a/pkgs/applications/video/kodi-packages/youtube/default.nix b/pkgs/applications/video/kodi-packages/youtube/default.nix
deleted file mode 100644
index 090e09d55ef6..000000000000
--- a/pkgs/applications/video/kodi-packages/youtube/default.nix
+++ /dev/null
@@ -1,32 +0,0 @@
-{ lib, buildKodiAddon, fetchzip, addonUpdateScript, six, requests, inputstreamhelper }:
-
-buildKodiAddon rec {
- pname = "youtube";
- namespace = "plugin.video.youtube";
- version = "6.8.18+matrix.1";
-
- src = fetchzip {
- url = "https://mirrors.kodi.tv/addons/matrix/${namespace}/${namespace}-${version}.zip";
- sha256 = "F950rnE/YxwWI0ieHC2TdGNSfrQDHlStnxLbA6UjEaM=";
- };
-
- 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;
- };
-}