mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-24 22:53:42 +00:00
24 lines
660 B
Nix
24 lines
660 B
Nix
{ lib, rel, buildKodiBinaryAddon, fetchFromGitHub, jsoncpp, libhdhomerun }:
|
|
buildKodiBinaryAddon rec {
|
|
pname = "pvr-hdhomerun";
|
|
namespace = "pvr.hdhomerun";
|
|
version = "19.0.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "kodi-pvr";
|
|
repo = "pvr.hdhomerun";
|
|
rev = "${version}-${rel}";
|
|
sha256 = "sha256-iFAOoQvZAdvJvN8FBg2w+oZWtr8mYdBQ3QX58HLmBho=";
|
|
};
|
|
|
|
extraBuildInputs = [ jsoncpp libhdhomerun ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/kodi-pvr/pvr.hdhomerun";
|
|
description = "Kodi's HDHomeRun PVR client addon";
|
|
platforms = platforms.all;
|
|
license = licenses.gpl2Only;
|
|
maintainers = teams.kodi.members;
|
|
};
|
|
}
|