3
0
Fork 0
forked from mirrors/nixpkgs

kodi.packages.orftvthek : init at 0.12.3-1

This commit is contained in:
Aaron Andersen 2022-01-02 14:23:53 -05:00
parent bca10d1f5a
commit da82d35dcb
2 changed files with 30 additions and 0 deletions

View file

@ -0,0 +1,28 @@
{ lib, buildKodiAddon, fetchFromGitHub, future, kodi-six, simplejson, inputstreamhelper }:
buildKodiAddon rec {
pname = "orftvthek";
namespace = "plugin.video.orftvthek";
version = "0.12.3-1";
src = fetchFromGitHub {
owner = "s0faking";
repo = namespace;
rev = version;
sha256 = "sha256-+J1NtmjbDWtS8d4nO9P/lR5GNmvtc1YjTW+bulGaU2Q=";
};
propagatedBuildInputs = [
future
kodi-six
simplejson
inputstreamhelper
];
meta = with lib; {
homepage = "https://github.com/s0faking/plugin.video.orftvthek";
description = "An addon that gives you access to the ORF TVthek Video Platform";
license = licenses.gpl2Only;
maintainers = teams.kodi.members;
};
}

View file

@ -90,6 +90,8 @@ let self = rec {
netflix = callPackage ../applications/video/kodi/addons/netflix { };
orftvthek = callPackage ../applications/video/kodi/addons/orftvthek { };
svtplay = callPackage ../applications/video/kodi/addons/svtplay { };
steam-controller = callPackage ../applications/video/kodi/addons/steam-controller { };