libwebsockets: 4.3.5 -> 4.4.1 (#457860)

This commit is contained in:
nixpkgs-ci[bot]
2025-12-03 10:45:04 +00:00
committed by GitHub
+4 -10
View File
@@ -13,13 +13,13 @@
stdenv.mkDerivation rec {
pname = "libwebsockets";
version = "4.3.5";
version = "4.4.1";
src = fetchFromGitHub {
owner = "warmcat";
repo = "libwebsockets";
rev = "v${version}";
hash = "sha256-KOAhIVn4G5u0A1TE75Xv7iYO3/i8foqWYecH0kJHdBM=";
hash = "sha256-Xvcnfvm9UCNXm3G3tVe7jExE3fwpzYuz8wllvINymeI=";
};
patches = [
@@ -35,14 +35,6 @@ stdenv.mkDerivation rec {
})
];
# Updating to 4.4.1 would bring some errors, and the patch doesn't apply cleanly
# https://github.com/warmcat/libwebsockets/commit/47efb8c1c2371fa309f85a32984e99b2cc1d614a
postPatch = ''
for f in $(find . -name CMakeLists.txt); do
sed '/^cmake_minimum_required/Is/VERSION [0-9]\.[0-9]/VERSION 3.5/' -i "$f"
done
'';
outputs = [
"out"
"dev"
@@ -62,6 +54,8 @@ stdenv.mkDerivation rec {
"-DLWS_WITH_SOCKS5=ON"
"-DDISABLE_WERROR=ON"
"-DLWS_BUILD_HASH=no_hash"
# TODO(Mindavi): figure out why linking has broken for test apps between 4.3.5 and 4.4.1.
"-DLWS_WITHOUT_TESTAPPS=ON"
]
++ lib.optional (stdenv.hostPlatform != stdenv.buildPlatform) "-DLWS_WITHOUT_TESTAPPS=ON"
++ lib.optional withExternalPoll "-DLWS_WITH_EXTERNAL_POLL=ON"