nixpkgs-suyu/pkgs/applications/video/kodi-packages/pvr-iptvsimple/default.nix

36 lines
833 B
Nix
Raw Normal View History

{ lib, rel, buildKodiBinaryAddon, fetchFromGitHub
, pugixml, zlib
, inputstream-adaptive, inputstream-ffmpegdirect, inputstream-rtmp
}:
buildKodiBinaryAddon rec {
pname = "pvr-iptvsimple";
namespace = "pvr.iptvsimple";
version = "7.5.1";
src = fetchFromGitHub {
owner = "kodi-pvr";
repo = "pvr.iptvsimple";
rev = "${version}-${rel}";
sha256 = "1q470v9nipnrca0rbwvqlbxw9ccbl9s1k46hwwrh94vhyp5rjlib";
};
extraBuildInputs = [
pugixml
zlib
];
propagatedBuildInputs = [
inputstream-adaptive
inputstream-ffmpegdirect
inputstream-rtmp
];
meta = with lib; {
homepage = "https://github.com/kodi-pvr/pvr.iptvsimple";
description = "Kodi's IPTV Simple client addon";
platforms = platforms.all;
license = licenses.gpl2Plus;
2021-03-19 00:52:44 +01:00
maintainers = teams.kodi.members;
};
}