biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / applications / video / kodi / addons / pvr-hts / default.nix
blob50e12c09c1c8bc7d2521230c912560ff9f0459ef
1 { lib, rel, buildKodiBinaryAddon, fetchFromGitHub }:
2 buildKodiBinaryAddon rec {
3   pname = "pvr-hts";
4   namespace = "pvr.hts";
5   version = "21.2.5";
7   src = fetchFromGitHub {
8     owner = "kodi-pvr";
9     repo = "pvr.hts";
10     rev = "${version}-${rel}";
11     sha256 = "sha256-BG5mGD674gvjUSdydu4g3F/4GH53gkJoKMDuvaFNi6k=";
12   };
14   meta = with lib; {
15     homepage = "https://github.com/kodi-pvr/pvr.hts";
16     description = "Kodi's Tvheadend HTSP client addon";
17     platforms = platforms.all;
18     license = licenses.gpl2Only;
19     maintainers = teams.kodi.members;
20   };