srt: init at 1.3.1

This commit is contained in:
Niklas Hambüchen 2019-01-20 18:46:06 +01:00
parent 4457da9a99
commit c26f2458d2
2 changed files with 36 additions and 0 deletions

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

@ -12658,6 +12658,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;
};