Merge pull request #54380 from nh2/package-srt

SRT support for gstreamer
This commit is contained in:
Jan Tojnar 2019-02-05 15:28:42 +01:00 committed by GitHub
commit f40412e3e2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 38 additions and 0 deletions

View File

@ -9,6 +9,7 @@
, libwebp, xvidcore, gnutls, mjpegtools
, libGLU_combined, libintl, libgme
, openssl, x265, libxml2
, srt
}:
assert faacSupport -> faac != null;
@ -74,6 +75,7 @@ stdenv.mkDerivation rec {
libwebp xvidcore gnutls libGLU_combined
libgme openssl x265 libxml2
libintl
srt
]
++ optional faacSupport faac
++ optional stdenv.isLinux wayland

View File

@ -0,0 +1,34 @@
{ stdenv, fetchFromGitHub, cmake, openssl
}:
with stdenv.lib;
stdenv.mkDerivation rec {
pname = "srt";
version = "1.3.1";
src = fetchFromGitHub {
owner = "Haivision";
repo = "srt";
rev = "v${version}";
sha256 = "0cv73j9c8024p6pg16c4hiryiv4jpgrfj2xhfdaprsikmkdnygmz";
};
nativeBuildInputs = [ cmake ];
buildInputs = [ openssl ];
cmakeFlags = [
# TODO Remove this when https://github.com/Haivision/srt/issues/538 is fixed and available to nixpkgs
# Workaround for the fact that srt incorrectly disables GNUInstallDirs when LIBDIR is specified,
# see https://github.com/NixOS/nixpkgs/pull/54463#discussion_r249878330
"-UCMAKE_INSTALL_LIBDIR"
];
meta = {
description = "Secure, Reliable, Transport";
homepage = https://www.srtalliance.org;
license = licenses.mpl20;
maintainers = with maintainers; [ nh2 ];
platforms = platforms.all;
};
}

View File

@ -12615,6 +12615,8 @@ in
srm = callPackage ../tools/security/srm { };
srt = callPackage ../development/libraries/srt { };
srtp = callPackage ../development/libraries/srtp {
libpcap = if stdenv.isLinux then libpcap else null;
};