bba55970ba
GitOrigin-RevId: 3d1a7716d7f1fccbd7d30ab3b2ed3db831f43bde
24 lines
659 B
Nix
24 lines
659 B
Nix
{ lib, rel, buildKodiBinaryAddon, fetchFromGitHub, openssl, rtmpdump, zlib }:
|
|
|
|
buildKodiBinaryAddon rec {
|
|
pname = "inputstream-rtmp";
|
|
namespace = "inputstream.rtmp";
|
|
version = "3.4.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "xbmc";
|
|
repo = "inputstream.rtmp";
|
|
rev = "${version}-${rel}";
|
|
sha256 = "1q4k6plkjasnjs7gnbcc1x2mwr562ach7bkqk1z1y343s0dp9qnq";
|
|
};
|
|
|
|
extraBuildInputs = [ openssl rtmpdump zlib ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/xbmc/inputstream.rtmp/";
|
|
description = "Client for RTMP streams";
|
|
platforms = platforms.all;
|
|
license = licenses.gpl2Plus;
|
|
maintainers = teams.kodi.members;
|
|
};
|
|
}
|