Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
63 lines
1.7 KiB
Nix
63 lines
1.7 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
fetchpatch,
|
|
cmake,
|
|
openssl,
|
|
windows,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "srt";
|
|
version = "1.5.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Haivision";
|
|
repo = "srt";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-NLy9GuP4OT/kKAIIDXSHtsmaBzXRuFohFM/aM+46cao=";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
buildInputs = [
|
|
openssl
|
|
]
|
|
++ lib.optionals stdenv.hostPlatform.isMinGW [
|
|
windows.pthreads
|
|
];
|
|
|
|
patches = [
|
|
# Fix the build with CMake 4.
|
|
(fetchpatch {
|
|
name = "srt-fix-cmake-4.patch";
|
|
url = "https://github.com/Haivision/srt/commit/0def1b1a1094fc57752f241250e9a1aed71bbffd.patch";
|
|
hash = "sha256-dnBGNut+I9trkQzr81Wo36O2Pt7d2gsjA1buJBegPMM=";
|
|
})
|
|
]
|
|
++ lib.optionals stdenv.hostPlatform.isMinGW [
|
|
./no-msvc-compat-headers.patch
|
|
];
|
|
|
|
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"
|
|
"-DENABLE_SHARED=${if stdenv.hostPlatform.isStatic then "OFF" else "ON"}"
|
|
# 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; {
|
|
description = "Secure, Reliable, Transport";
|
|
homepage = "https://github.com/Haivision/srt";
|
|
license = licenses.mpl20;
|
|
maintainers = with maintainers; [ nh2 ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|