mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-29 10:23:29 +00:00
srt: init at 1.3.1
This commit is contained in:
parent
4457da9a99
commit
c26f2458d2
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;
|
||||
};
|
||||
}
|
@ -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;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user