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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

38 lines
1.2 KiB
Nix
Raw Normal View History

{ 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 = [
# 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 = with lib; {
2019-01-20 17:46:06 +00:00
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;
};
}