nixpkgs/pkgs/applications/video/kodi/addons/orftvthek/default.nix
2022-01-02 14:23:53 -05:00

29 lines
714 B
Nix

{ 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;
};
}