about summary refs log tree commit diff
path: root/pkgs/applications/video
diff options
context:
space:
mode:
authorJeremy Fleischman <jeremyfleischman@gmail.com>2022-12-09 05:50:07 +0000
committerJeremy Fleischman <jeremyfleischman@gmail.com>2022-12-09 10:59:57 -0800
commit29ffa5eb32e8ea0395d5cc6d3d21e37f50557f4c (patch)
treeb082f765fa2eca33ab26af38e1a2d3b59f7ef460 /pkgs/applications/video
parent8ffe22e2866c31ac053f71026eceee5505f53bdd (diff)
kodiPackages.youtube: 6.8.18+matrix.1 → 6.8.22+matrix.1
Updating to the latest version of
https://github.com/anxdpanic/plugin.video.youtube/, which lets us drop
this patch I added.

I can't find a good permalink for a changelog. Here's what I have found:

- 113 commits going from v6.8.18...v6.8.22: https://github.com/anxdpanic/plugin.video.youtube/compare/v6.8.18...v6.8.22
- Release notes for all the versions we're jumping:
  - https://github.com/anxdpanic/plugin.video.youtube/releases/tag/v6.8.18
  - https://github.com/anxdpanic/plugin.video.youtube/releases/tag/v6.8.20
  - https://github.com/anxdpanic/plugin.video.youtube/releases/tag/6.x.x-dev
  - https://github.com/anxdpanic/plugin.video.youtube/releases/tag/v6.8.21
  - https://github.com/anxdpanic/plugin.video.youtube/releases/tag/v6.8.22
Diffstat (limited to 'pkgs/applications/video')
-rw-r--r--pkgs/applications/video/kodi/addons/youtube/default.nix15
1 files changed, 3 insertions, 12 deletions
diff --git a/pkgs/applications/video/kodi/addons/youtube/default.nix b/pkgs/applications/video/kodi/addons/youtube/default.nix
index 632b421ccfab1..ee09ee4322940 100644
--- a/pkgs/applications/video/kodi/addons/youtube/default.nix
+++ b/pkgs/applications/video/kodi/addons/youtube/default.nix
@@ -1,13 +1,13 @@
-{ lib, buildKodiAddon, fetchpatch, fetchzip, addonUpdateScript, six, requests, inputstreamhelper }:
+{ lib, buildKodiAddon, fetchzip, addonUpdateScript, six, requests, inputstreamhelper }:
 
 buildKodiAddon rec {
   pname = "youtube";
   namespace = "plugin.video.youtube";
-  version = "6.8.18+matrix.1";
+  version = "6.8.22+matrix.1";
 
   src = fetchzip {
     url = "https://mirrors.kodi.tv/addons/matrix/${namespace}/${namespace}-${version}.zip";
-    sha256 = "F950rnE/YxwWI0ieHC2TdGNSfrQDHlStnxLbA6UjEaM=";
+    sha256 = "V1ALhD0zLm6Rq2KFpZXULPiB7sAPaNDhCpxScr+apDE=";
   };
 
   propagatedBuildInputs = [
@@ -23,15 +23,6 @@ buildKodiAddon rec {
     };
   };
 
-  patches = [
-    # This patch can be removed once https://github.com/anxdpanic/plugin.video.youtube/pull/260 has been merged.
-    (fetchpatch {
-      name = "fix-addon-path";
-      url = "https://patch-diff.githubusercontent.com/raw/anxdpanic/plugin.video.youtube/pull/260.patch";
-      sha256 = "11c9sfwl5kvfll2jws5b4i46s60v6gkfns4al13p4m5ch9rk06hs";
-    })
-  ];
-
   meta = with lib; {
     homepage = "https://github.com/anxdpanic/plugin.video.youtube";
     description = "YouTube is one of the biggest video-sharing websites of the world";