2021-01-21 17:00:13 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, cmake, openssl
|
2019-01-20 17:46:06 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "srt";
|
2022-09-27 02:45:43 +00:00
|
|
|
version = "1.5.1";
|
2019-01-20 17:46:06 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "Haivision";
|
|
|
|
repo = "srt";
|
|
|
|
rev = "v${version}";
|
2022-09-27 02:45:43 +00:00
|
|
|
sha256 = "sha256-qVvoHtROtJjrUd+YpjN/0I6KmiH7c24+pQ4xYTUGPXk=";
|
2019-01-20 17:46:06 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
|
|
|
|
buildInputs = [ openssl ];
|
|
|
|
|
|
|
|
cmakeFlags = [
|
2019-10-22 12:50:24 +00:00
|
|
|
# the cmake package does not handle absolute CMAKE_INSTALL_INCLUDEDIR correctly
|
|
|
|
# (setting it to an absolute path causes include files to go to $out/$out/include,
|
|
|
|
# because the absolute path is interpreted with root at $out).
|
|
|
|
"-DCMAKE_INSTALL_INCLUDEDIR=include"
|
2019-01-20 17:46:06 +00:00
|
|
|
# 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"
|
|
|
|
];
|
|
|
|
|
2023-01-26 17:31:02 +00:00
|
|
|
meta = with lib; {
|
2019-01-20 17:46:06 +00:00
|
|
|
description = "Secure, Reliable, Transport";
|
2021-06-23 12:16:31 +00:00
|
|
|
homepage = "https://github.com/Haivision/srt";
|
2019-01-20 17:46:06 +00:00
|
|
|
license = licenses.mpl20;
|
|
|
|
maintainers = with maintainers; [ nh2 ];
|
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
|
|
|
}
|