nixpkgs/pkgs/development/libraries/srt/default.nix

35 lines
922 B
Nix
Raw Normal View History

2019-01-20 18:46:06 +01:00
{ stdenv, fetchFromGitHub, cmake, openssl
}:
with stdenv.lib;
stdenv.mkDerivation rec {
pname = "srt";
2019-09-21 19:55:30 +02:00
version = "1.4.0";
2019-01-20 18:46:06 +01:00
src = fetchFromGitHub {
owner = "Haivision";
repo = "srt";
rev = "v${version}";
2019-09-21 19:55:30 +02:00
sha256 = "1rmswx4x3p9pdgnd7vvl3vwgh9rynakjhv1mipy2yid5rb61ajlj";
2019-01-20 18:46:06 +01:00
};
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;
};
}