nixpkgs/pkgs/development/libraries/srt/default.nix
Niklas Hambüchen f7b53c0f6a srt: Fix wrong srt.pc include path. Fixes #70872.
Fix copied from:

    1230fc8674/pkgs/development/compilers/hhvm/default.nix (L41-L44)

Signed-off-by: Niklas Hambüchen <mail@nh2.me>
2019-10-22 14:51:14 +02:00

39 lines
1.2 KiB
Nix

{ stdenv, fetchFromGitHub, cmake, openssl
}:
with stdenv.lib;
stdenv.mkDerivation rec {
pname = "srt";
version = "1.4.0";
src = fetchFromGitHub {
owner = "Haivision";
repo = "srt";
rev = "v${version}";
sha256 = "1rmswx4x3p9pdgnd7vvl3vwgh9rynakjhv1mipy2yid5rb61ajlj";
};
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"
# 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;
};
}