forked from mirrors/nixpkgs
22 lines
544 B
Nix
22 lines
544 B
Nix
|
{ lib, rel, buildKodiBinaryAddon, fetchFromGitHub }:
|
||
|
buildKodiBinaryAddon rec {
|
||
|
pname = "pvr-hts";
|
||
|
namespace = "pvr.hts";
|
||
|
version = "8.2.2";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "kodi-pvr";
|
||
|
repo = "pvr.hts";
|
||
|
rev = "${version}-${rel}";
|
||
|
sha256 = "0jnn9gfjl556acqjf92wzzn371gxymhbbi665nqgg2gjcan0a49q";
|
||
|
};
|
||
|
|
||
|
meta = with lib; {
|
||
|
homepage = "https://github.com/kodi-pvr/pvr.hts";
|
||
|
description = "Kodi's Tvheadend HTSP client addon";
|
||
|
platforms = platforms.all;
|
||
|
maintainers = with maintainers; [ cpages ];
|
||
|
};
|
||
|
|
||
|
}
|