Files

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

72 lines
1.8 KiB
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
lib,
stdenv,
fetchFromGitHub,
fetchpatch,
cmake,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "civetweb";
version = "1.16";
src = fetchFromGitHub {
owner = "civetweb";
repo = "civetweb";
tag = "v${finalAttrs.version}";
hash = "sha256-eXb5f2jhtfxDORG+JniSy17kzB7A4vM0UnUQAfKTquU=";
};
patches = [
./fix-pkg-config-files.patch
(fetchpatch {
name = "CVE-2025-55763.patch";
url = "https://github.com/civetweb/civetweb/commit/76e222bcb77ba8452e5da4e82ae6cecd499c25e0.patch";
hash = "sha256-gv2FR53SxmRCCTRjj17RhIjoHkgOz5ENs9oHmcfFmw8=";
})
];
outputs = [
"out"
"dev"
];
strictDeps = true;
nativeBuildInputs = [
cmake
];
# The existence of the "build" script causes `mkdir -p build` to fail:
# mkdir: cannot create directory 'build': File exists
preConfigure = ''
rm build
'';
cmakeFlags = [
"-DBUILD_SHARED_LIBS=ON"
"-DCIVETWEB_ENABLE_CXX=ON"
"-DCIVETWEB_ENABLE_IPV6=ON"
# The civetweb unit tests rely on downloading their fork of libcheck.
"-DCIVETWEB_BUILD_TESTING=OFF"
# The default stack size in civetweb is 102400 (see the CMakeLists [1]).
# This can lead to stack overflows even in basic usage;
# Setting this value to 0 lets the OS choose the stack size instead, which results in a more suitable value.
#
# [1] https://github.com/civetweb/civetweb/blob/cafd5f8fae3b859b7f8c29feb03ea075c7221497/CMakeLists.txt#L56
"-DCIVETWEB_THREAD_STACK_SIZE=0"
# Workaround CMake 4 compat
(lib.cmakeFeature "CMAKE_POLICY_VERSION_MINIMUM" "3.5")
];
meta = {
description = "Embedded C/C++ web server";
mainProgram = "civetweb";
homepage = "https://github.com/civetweb/civetweb";
license = [ lib.licenses.mit ];
};
})