22 lines
566 B
Nix
22 lines
566 B
Nix
{ lib, rel, buildKodiBinaryAddon, fetchFromGitHub }:
|
|
buildKodiBinaryAddon rec {
|
|
pname = "pvr-hts";
|
|
namespace = "pvr.hts";
|
|
version = "8.3.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "kodi-pvr";
|
|
repo = "pvr.hts";
|
|
rev = "${version}-${rel}";
|
|
sha256 = "15gv499r6jf89chp7xpv0z4v0nia907czs83lz57lxydqcbmmjnn";
|
|
};
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/kodi-pvr/pvr.hts";
|
|
description = "Kodi's Tvheadend HTSP client addon";
|
|
platforms = platforms.all;
|
|
license = licenses.gpl2Only;
|
|
maintainers = teams.kodi.members;
|
|
};
|
|
}
|