mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 18:03:04 +00:00
86 lines
1.8 KiB
Nix
86 lines
1.8 KiB
Nix
{ stdenv
|
|
, fetchFromGitHub
|
|
, cmake
|
|
, boost
|
|
, libevent
|
|
, double-conversion
|
|
, glog
|
|
, lib
|
|
, fmt_8
|
|
, zstd
|
|
, gflags
|
|
, libiberty
|
|
, openssl
|
|
, folly
|
|
, libsodium
|
|
, gtest
|
|
, zlib
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "fizz";
|
|
version = "2024.03.11.00";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "facebookincubator";
|
|
repo = "fizz";
|
|
rev = "refs/tags/v${finalAttrs.version}";
|
|
hash = "sha256-IHWotiVUjGOvebXy4rwsh8U8UMxTrF1VaqXzZMjojiM=";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
cmakeDir = "../fizz";
|
|
|
|
cmakeFlags = [
|
|
"-Wno-dev"
|
|
(lib.cmakeBool "BUILD_TESTS" finalAttrs.finalPackage.doCheck)
|
|
] ++ lib.optionals stdenv.isDarwin [
|
|
"-DCMAKE_OSX_DEPLOYMENT_TARGET=10.14" # For aligned allocation
|
|
];
|
|
|
|
NIX_LDFLAGS = "-lz";
|
|
|
|
buildInputs = [
|
|
fmt_8
|
|
boost
|
|
double-conversion
|
|
folly
|
|
glog
|
|
gflags
|
|
libevent
|
|
libiberty
|
|
libsodium
|
|
openssl
|
|
zlib
|
|
zstd
|
|
];
|
|
|
|
doCheck = true;
|
|
checkInputs = [
|
|
gtest
|
|
];
|
|
preCheck = let
|
|
disabledTests = [
|
|
# these don't work with openssl 3.x probably due to
|
|
# https://github.com/openssl/openssl/issues/13283
|
|
"DefaultCertificateVerifierTest.TestVerifySuccess"
|
|
"DefaultCertificateVerifierTest.TestVerifyWithIntermediates"
|
|
|
|
# timing-related & flaky
|
|
"SlidingBloomReplayCacheTest.TestTimeBucketing"
|
|
];
|
|
in ''
|
|
export GTEST_FILTER="-${lib.concatStringsSep ":" disabledTests}"
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "C++14 implementation of the TLS-1.3 standard";
|
|
homepage = "https://github.com/facebookincubator/fizz";
|
|
changelog = "https://github.com/facebookincubator/fizz/releases/tag/v${finalAttrs.version}";
|
|
license = licenses.bsd3;
|
|
platforms = platforms.unix;
|
|
maintainers = with maintainers; [ pierreis kylesferrazza ];
|
|
};
|
|
})
|