Merge pull request #54380 from nh2/package-srt
SRT support for gstreamer
This commit is contained in:
commit
f40412e3e2
@ -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
|
||||
|
||||
34
pkgs/development/libraries/srt/default.nix
Normal file
34
pkgs/development/libraries/srt/default.nix
Normal 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;
|
||||
};
|
||||
}
|
||||
@ -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;
|
||||
};
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user