kodi.packages.pvr-iptvsimple: 7.4.2 -> 7.5.1
This commit is contained in:
parent
1680bf2df1
commit
734c502384
1 changed files with 16 additions and 4 deletions
|
@ -1,17 +1,29 @@
|
|||
{ lib, rel, buildKodiBinaryAddon, fetchFromGitHub, zlib, pugixml }:
|
||||
{ lib, rel, buildKodiBinaryAddon, fetchFromGitHub
|
||||
, pugixml, zlib
|
||||
, inputstream-adaptive, inputstream-ffmpegdirect, inputstream-rtmp
|
||||
}:
|
||||
|
||||
buildKodiBinaryAddon rec {
|
||||
pname = "pvr-iptvsimple";
|
||||
namespace = "pvr.iptvsimple";
|
||||
version = "7.4.2";
|
||||
version = "7.5.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "kodi-pvr";
|
||||
repo = "pvr.iptvsimple";
|
||||
rev = "${version}-${rel}";
|
||||
sha256 = "062i922qi0izkvn7v47yhyy2cf3fa7xc3k95b1gm9abfdwkk8ywr";
|
||||
sha256 = "1q470v9nipnrca0rbwvqlbxw9ccbl9s1k46hwwrh94vhyp5rjlib";
|
||||
};
|
||||
|
||||
extraBuildInputs = [ zlib pugixml ];
|
||||
extraBuildInputs = [
|
||||
pugixml
|
||||
zlib
|
||||
];
|
||||
propagatedBuildInputs = [
|
||||
inputstream-adaptive
|
||||
inputstream-ffmpegdirect
|
||||
inputstream-rtmp
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/kodi-pvr/pvr.iptvsimple";
|
||||
|
|
Loading…
Reference in a new issue