mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-12 16:03:32 +00:00
29 lines
714 B
Nix
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;
|
||
|
};
|
||
|
}
|