mosquitto: use libwebsockets 4.x
This requires us to enable LWS_WITH_EXTERNAL_POLL. Since only mosquitto needs that and upstream discourages enabling it, we'll just do it in an override in mosquitto.
This commit is contained in:
parent
e8ecc402a5
commit
065992e4f8
2 changed files with 12 additions and 3 deletions
|
@ -5,6 +5,8 @@
|
|||
, openssl
|
||||
, zlib
|
||||
, libuv
|
||||
# External poll is required for e.g. mosquitto, but discouraged by the maintainer.
|
||||
, withExternalPoll ? false
|
||||
}:
|
||||
|
||||
let
|
||||
|
@ -29,7 +31,8 @@ let
|
|||
"-DLWS_WITH_SOCKS5=ON"
|
||||
# Required since v4.2.0
|
||||
"-DLWS_BUILD_HASH=no_hash"
|
||||
] ++ lib.optional (stdenv.hostPlatform != stdenv.buildPlatform) "-DLWS_WITHOUT_TESTAPPS=ON";
|
||||
] ++ lib.optional (stdenv.hostPlatform != stdenv.buildPlatform) "-DLWS_WITHOUT_TESTAPPS=ON"
|
||||
++ lib.optional withExternalPoll "-DLWS_WITH_EXTERNAL_POLL=ON";
|
||||
|
||||
NIX_CFLAGS_COMPILE = lib.optionalString stdenv.cc.isGNU "-Wno-error=unused-but-set-variable";
|
||||
|
||||
|
|
|
@ -8,13 +8,19 @@
|
|||
, cjson
|
||||
, libuuid
|
||||
, libuv
|
||||
, libwebsockets_3_1
|
||||
, libwebsockets
|
||||
, openssl
|
||||
, withSystemd ? stdenv.isLinux
|
||||
, systemd
|
||||
, fetchpatch
|
||||
}:
|
||||
|
||||
let
|
||||
# Mosquitto needs external poll enabled in libwebsockets.
|
||||
libwebsockets' = libwebsockets.override {
|
||||
withExternalPoll = true;
|
||||
};
|
||||
in
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "mosquitto";
|
||||
version = "2.0.12";
|
||||
|
@ -54,7 +60,7 @@ stdenv.mkDerivation rec {
|
|||
cjson
|
||||
libuuid
|
||||
libuv
|
||||
libwebsockets_3_1
|
||||
libwebsockets'
|
||||
openssl
|
||||
] ++ lib.optional withSystemd systemd;
|
||||
|
||||
|
|
Loading…
Reference in a new issue