1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-25 23:20:55 +00:00
nixpkgs/pkgs/development/libraries/srt/default.nix

39 lines
1.2 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, cmake, openssl
2019-01-20 17:46:06 +00:00
}:
with lib;
2019-01-20 17:46:06 +00:00
stdenv.mkDerivation rec {
pname = "srt";
2021-06-23 12:41:46 +01:00
version = "1.4.3";
2019-01-20 17:46:06 +00:00
src = fetchFromGitHub {
owner = "Haivision";
repo = "srt";
rev = "v${version}";
2021-06-23 12:41:46 +01:00
sha256 = "1f60vlfxhh9bhafws82c3301whjlz5gy92jz9a9ymwfg5h53bv1j";
2019-01-20 17:46:06 +00:00
};
nativeBuildInputs = [ cmake ];
buildInputs = [ openssl ];
cmakeFlags = [
# 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"
];
meta = {
description = "Secure, Reliable, Transport";
homepage = "https://github.com/Haivision/srt";
2019-01-20 17:46:06 +00:00
license = licenses.mpl20;
maintainers = with maintainers; [ nh2 ];
platforms = platforms.all;
};
}