Unverified Commit 1097a6b5 authored by Aaron Andersen's avatar Aaron Andersen Committed by GitHub
Browse files

Merge pull request #278688 from gador/kodiPackages-pvr-vdr-vnsi

kodiPackages.pvr-vdr-vnsi: init at 20.4.1
parents a6303da3 9d594179
Loading
Loading
Loading
Loading
+23 −0
Original line number Diff line number Diff line
{ lib, rel, buildKodiBinaryAddon, fetchFromGitHub, libGL }:
buildKodiBinaryAddon rec {
  pname = "pvr-vdr-vnsi";
  namespace = "pvr.vdr.vnsi";
  version = "20.4.1";

  src = fetchFromGitHub {
    owner = "kodi-pvr";
    repo = "pvr.vdr.vnsi";
    rev = "${version}-${rel}";
    sha256 = "sha256-QooWK+LwlN5RAISjAQ2YiyDAjQQMzod8fFXpI0ll+hc=";
  };

  extraBuildInputs = [ libGL ];

  meta = with lib; {
    homepage = "https://github.com/kodi-pvr/pvr.vdr.vnsi";
    description = "Kodi's VDR VNSI PVR client addon";
    platforms = platforms.all;
    license = licenses.gpl2Only;
    maintainers = teams.kodi.members;
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -106,6 +106,8 @@ let self = rec {

  pvr-iptvsimple = callPackage ../applications/video/kodi/addons/pvr-iptvsimple { };

  pvr-vdr-vnsi = callPackage ../applications/video/kodi/addons/pvr-vdr-vnsi { };

  osmc-skin = callPackage ../applications/video/kodi/addons/osmc-skin { };

  vfs-libarchive = callPackage ../applications/video/kodi/addons/vfs-libarchive { };