mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-01 19:33:03 +00:00
fd6a8fb894
With their new versioning scheme, OpenSSL have committed[1] to API and ABI compatibility for the whole 3.x.x release series, so we shouldn't be overly specific in our attribute name. [1]: https://www.openssl.org/blog/blog/2018/11/28/version/
61 lines
1.7 KiB
Nix
61 lines
1.7 KiB
Nix
{ lib, stdenv
|
|
, fetchFromGitHub
|
|
, fetchpatch
|
|
, srt
|
|
, bc
|
|
, pkg-config
|
|
, perl
|
|
, openssl_3
|
|
, zlib
|
|
, ffmpeg
|
|
, libvpx
|
|
, libopus
|
|
, libuuid
|
|
, srtp
|
|
, jemalloc
|
|
, pcre2
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "oven-media-engine";
|
|
version = "0.13.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "AirenSoft";
|
|
repo = "OvenMediaEngine";
|
|
rev = "v${version}";
|
|
sha256 = "0lkpidx4r890mcdk9m69j4iahm7qr7w34h11w1nmi132v0rqm0h8";
|
|
};
|
|
|
|
sourceRoot = "source/src";
|
|
makeFlags = "release CONFIG_LIBRARY_PATHS= CONFIG_PKG_PATHS= GLOBAL_CC=$(CC) GLOBAL_CXX=$(CXX) GLOBAL_LD=$(CXX) SHELL=${stdenv.shell}";
|
|
enableParallelBuilding = true;
|
|
|
|
nativeBuildInputs = [ bc pkg-config perl ];
|
|
buildInputs = [ openssl_3 srt zlib ffmpeg libvpx libopus srtp jemalloc pcre2 libuuid ];
|
|
|
|
preBuild = ''
|
|
patchShebangs core/colorg++
|
|
patchShebangs core/colorgcc
|
|
patchShebangs projects/main/update_git_info.sh
|
|
|
|
sed -i -e '/^CC =/d' -e '/^CXX =/d' -e '/^AR =/d' projects/third_party/pugixml-1.9/scripts/pugixml.make
|
|
'';
|
|
|
|
installPhase = ''
|
|
install -Dm0755 bin/RELEASE/OvenMediaEngine $out/bin/OvenMediaEngine
|
|
install -Dm0644 ../misc/conf_examples/Origin.xml $out/share/examples/origin_conf/Server.xml
|
|
install -Dm0644 ../misc/conf_examples/Logger.xml $out/share/examples/origin_conf/Logger.xml
|
|
install -Dm0644 ../misc/conf_examples/Edge.xml $out/share/examples/edge_conf/Server.xml
|
|
install -Dm0644 ../misc/conf_examples/Logger.xml $out/share/examples/edge_conf/Logger.xml
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Open-source streaming video service with sub-second latency";
|
|
homepage = "https://ovenmediaengine.com";
|
|
license = licenses.agpl3Only;
|
|
maintainers = with maintainers; [ lukegb ];
|
|
platforms = [ "x86_64-linux" ];
|
|
};
|
|
}
|