mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-16 18:03:59 +00:00
4f0dadbf38
After final improvements to the official formatter implementation, this commit now performs the first treewide reformat of Nix files using it. This is part of the implementation of RFC 166. Only "inactive" files are reformatted, meaning only files that aren't being touched by any PR with activity in the past 2 months. This is to avoid conflicts for PRs that might soon be merged. Later we can do a full treewide reformat to get the rest, which should not cause as many conflicts. A CI check has already been running for some time to ensure that new and already-formatted files are formatted, so the files being reformatted here should also stay formatted. This commit was automatically created and can be verified using nix-builda08b3a4d19
.tar.gz \ --argstr baseRevb32a094368
result/bin/apply-formatting $NIXPKGS_PATH
55 lines
1.5 KiB
Nix
55 lines
1.5 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
cmake,
|
|
openssl,
|
|
windows,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "srt";
|
|
version = "1.5.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Haivision";
|
|
repo = "srt";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-HmfbBPyR+z5d9/XBvNhosk8pSSPToNtM+V0hEyb2G2w=";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
buildInputs =
|
|
[
|
|
openssl
|
|
]
|
|
++ lib.optionals stdenv.hostPlatform.isMinGW [
|
|
windows.mingw_w64_pthreads
|
|
];
|
|
|
|
patches = 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;
|
|
};
|
|
}
|