openxray: 2188-november-2023-rc1 -> 2921-january-2025-rc1 (#375925)
[NixPkgs.git] / pkgs / applications / video / kodi / addons / inputstream-rtmp / default.nix
blob33e4bcb02626187046c6a2abcfcf764b690a7b34
2   lib,
3   rel,
4   buildKodiBinaryAddon,
5   fetchFromGitHub,
6   openssl,
7   rtmpdump,
8   zlib,
9 }:
11 buildKodiBinaryAddon rec {
12   pname = "inputstream-rtmp";
13   namespace = "inputstream.rtmp";
14   version = "21.1.0";
16   src = fetchFromGitHub {
17     owner = "xbmc";
18     repo = "inputstream.rtmp";
19     rev = "${version}-${rel}";
20     sha256 = "sha256-M6LFokWQRzBZ7inzRsMxyWzkV0XsGHh4d0CPhv1NCfI=";
21   };
23   extraBuildInputs = [
24     openssl
25     rtmpdump
26     zlib
27   ];
29   meta = with lib; {
30     homepage = "https://github.com/xbmc/inputstream.rtmp/";
31     description = "Client for RTMP streams";
32     platforms = platforms.all;
33     license = licenses.gpl2Plus;
34     maintainers = teams.kodi.members;
35   };