Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
45 lines
854 B
Nix
45 lines
854 B
Nix
{
|
|
lib,
|
|
rel,
|
|
buildKodiBinaryAddon,
|
|
fetchFromGitHub,
|
|
xz,
|
|
pugixml,
|
|
zlib,
|
|
inputstream-adaptive,
|
|
inputstream-ffmpegdirect,
|
|
inputstream-rtmp,
|
|
}:
|
|
|
|
buildKodiBinaryAddon rec {
|
|
pname = "pvr-iptvsimple";
|
|
namespace = "pvr.iptvsimple";
|
|
version = "21.10.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "kodi-pvr";
|
|
repo = "pvr.iptvsimple";
|
|
rev = "${version}-${rel}";
|
|
sha256 = "sha256-bw0rAEn8R44n5Nzc9ni6IGaG/Bxry6GSyWcT6BdgLz8=";
|
|
};
|
|
|
|
extraBuildInputs = [
|
|
xz
|
|
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;
|
|
teams = [ teams.kodi ];
|
|
};
|
|
}
|