791bc4762b
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/srt/versions
35 lines
922 B
Nix
35 lines
922 B
Nix
{ stdenv, fetchFromGitHub, cmake, openssl
|
|
}:
|
|
|
|
with stdenv.lib;
|
|
stdenv.mkDerivation rec {
|
|
pname = "srt";
|
|
version = "1.3.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Haivision";
|
|
repo = "srt";
|
|
rev = "v${version}";
|
|
sha256 = "1dwz7qrkdrbmsbh66rbdx36b60r8whkz0wvf47jfckzsj37d2w22";
|
|
};
|
|
|
|
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;
|
|
};
|
|
}
|