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.
main
Rick van Schijndel 3 years ago
parent e8ecc402a5
commit 065992e4f8
  1. 5
      pkgs/development/libraries/libwebsockets/default.nix
  2. 10
      pkgs/servers/mqtt/mosquitto/default.nix

@ -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…
Cancel
Save