nixpkgs/pkgs/applications/video/kodi/addons/pdfreader/default.nix
Fernando Rodrigues 05580f4b44
treewide: switch instances of lib.teams.*.members to the new meta.teams attribute
Follow-up to #394797.

Signed-off-by: Fernando Rodrigues <alpha@sigmasquadron.net>
2025-04-25 22:20:17 -03:00

26 lines
566 B
Nix

{
lib,
buildKodiAddon,
fetchFromGitHub,
}:
buildKodiAddon rec {
pname = "pdfreader";
namespace = "plugin.image.pdf";
version = "2.0.3";
src = fetchFromGitHub {
owner = "i96751414";
repo = "plugin.image.pdfreader";
rev = "v${version}";
sha256 = "sha256-J93poR5VO9fAgNCEGftJVYnpXOsJSxnhHI6TAJZ2LeI=";
};
passthru.pythonPath = "lib/api";
meta = with lib; {
homepage = "https://forum.kodi.tv/showthread.php?tid=187421";
description = "Comic book reader";
license = licenses.gpl2Plus;
teams = [ teams.kodi ];
};
}