summary refs log tree commit diff
diff options
context:
space:
mode:
authorAaron Andersen <aaron@fosslib.net>2021-03-05 21:49:14 -0500
committerGitHub <noreply@github.com>2021-03-05 21:49:14 -0500
commitc147c2766c3e357408bd0a334515799d72afe5ef (patch)
treecce30482be25a2d3445529b7a578ca6d97ae963c
parent1bbeab0fa69de46153be069e424903995ffcd3f9 (diff)
parent9d9829b5b1931d09b5e17eddac45490c09145777 (diff)
downloadnixpkgs-c147c2766c3e357408bd0a334515799d72afe5ef.tar
nixpkgs-c147c2766c3e357408bd0a334515799d72afe5ef.tar.gz
nixpkgs-c147c2766c3e357408bd0a334515799d72afe5ef.tar.bz2
nixpkgs-c147c2766c3e357408bd0a334515799d72afe5ef.tar.lz
nixpkgs-c147c2766c3e357408bd0a334515799d72afe5ef.tar.xz
nixpkgs-c147c2766c3e357408bd0a334515799d72afe5ef.tar.zst
nixpkgs-c147c2766c3e357408bd0a334515799d72afe5ef.zip
Merge pull request #114274 from aanderse/kodiPlugins.pdfreader
kodiPlugins.pdfreader: 1.0.2 -> 2.0.2
-rw-r--r--pkgs/applications/video/kodi/plugins.nix14
1 files changed, 6 insertions, 8 deletions
diff --git a/pkgs/applications/video/kodi/plugins.nix b/pkgs/applications/video/kodi/plugins.nix
index 44e5dec6b77..3aea028e9f0 100644
--- a/pkgs/applications/video/kodi/plugins.nix
+++ b/pkgs/applications/video/kodi/plugins.nix
@@ -346,21 +346,19 @@ let self = rec {
   pdfreader = mkKodiPlugin rec {
     plugin = "pdfreader";
     namespace = "plugin.image.pdf";
-    version = "1.0.2";
+    version = "2.0.2";
 
-    src = fetchFromGitHub rec {
-      name = plugin + "-" + version + ".tar.gz";
-      owner = "teeedubb";
-      repo = owner + "-xbmc-repo";
-      rev = "0a405b95208ced8a1365ad3193eade8d1c2117ce";
-      sha256 = "1iv7d030z3xvlflvp4p5v3riqnwg9g0yvzxszy63v1a6x5kpjkqa";
+    src = fetchFromGitHub {
+      owner = "i96751414";
+      repo = "plugin.image.pdfreader";
+      rev = "v${version}";
+      sha256 = "0nkqhlm1gyagq6xpdgqvd5qxyr2ngpml9smdmzfabc8b972mwjml";
     };
 
     meta = {
       homepage = "https://forum.kodi.tv/showthread.php?tid=187421";
       description = "A comic book reader";
       maintainers = with maintainers; [ edwtjo ];
-      broken = true; # requires port to python3
     };
   };