2021-01-26 16:56:46 +00:00
|
|
|
{ stdenv
|
|
|
|
, lib
|
|
|
|
, fetchFromGitHub
|
|
|
|
, cmake
|
|
|
|
, docbook_xsl
|
|
|
|
, libxslt
|
|
|
|
, c-ares
|
|
|
|
, cjson
|
|
|
|
, libuuid
|
|
|
|
, libuv
|
2021-11-23 18:15:33 +00:00
|
|
|
, libwebsockets
|
2021-01-26 16:56:46 +00:00
|
|
|
, openssl
|
2022-09-21 07:04:52 +00:00
|
|
|
, withSystemd ? lib.meta.availableOn stdenv.hostPlatform systemd
|
2021-01-26 16:56:46 +00:00
|
|
|
, systemd
|
2021-08-04 20:01:07 +00:00
|
|
|
, fetchpatch
|
2021-01-26 16:56:46 +00:00
|
|
|
}:
|
2015-02-19 22:53:44 +00:00
|
|
|
|
2021-11-23 18:15:33 +00:00
|
|
|
let
|
|
|
|
# Mosquitto needs external poll enabled in libwebsockets.
|
|
|
|
libwebsockets' = libwebsockets.override {
|
|
|
|
withExternalPoll = true;
|
|
|
|
};
|
|
|
|
in
|
2019-04-24 08:22:57 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "mosquitto";
|
2022-11-22 08:05:05 +00:00
|
|
|
version = "2.0.15";
|
2015-02-19 22:53:44 +00:00
|
|
|
|
2018-10-11 09:03:32 +00:00
|
|
|
src = fetchFromGitHub {
|
2021-01-26 16:56:46 +00:00
|
|
|
owner = "eclipse";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2022-11-22 08:05:05 +00:00
|
|
|
sha256 = "sha256-H2oaTphx5wvwXWDDaf9lLSVfHWmb2rMlxQmyRB4k5eg=";
|
2015-02-19 22:53:44 +00:00
|
|
|
};
|
|
|
|
|
2021-08-04 20:01:07 +00:00
|
|
|
patches = lib.optionals stdenv.isDarwin [
|
|
|
|
(fetchpatch {
|
|
|
|
name = "revert-cmake-shared-to-module.patch"; # See https://github.com/eclipse/mosquitto/issues/2277
|
|
|
|
url = "https://github.com/eclipse/mosquitto/commit/e21eaeca37196439b3e89bb8fd2eb1903ef94845.patch";
|
|
|
|
sha256 = "14syi2c1rks8sl2aw09my276w45yq1iasvzkqcrqwy4drdqrf069";
|
|
|
|
revert = true;
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
2017-09-28 19:15:42 +00:00
|
|
|
postPatch = ''
|
2019-03-01 10:53:45 +00:00
|
|
|
for f in html manpage ; do
|
|
|
|
substituteInPlace man/$f.xsl \
|
|
|
|
--replace http://docbook.sourceforge.net/release/xsl/current ${docbook_xsl}/share/xml/docbook-xsl
|
|
|
|
done
|
2018-10-11 09:03:32 +00:00
|
|
|
|
|
|
|
# the manpages are not generated when using cmake
|
|
|
|
pushd man
|
|
|
|
make
|
|
|
|
popd
|
2015-02-19 22:53:44 +00:00
|
|
|
'';
|
|
|
|
|
2021-01-26 16:56:46 +00:00
|
|
|
nativeBuildInputs = [ cmake docbook_xsl libxslt ];
|
|
|
|
|
2019-03-01 10:53:45 +00:00
|
|
|
buildInputs = [
|
2021-01-26 16:56:46 +00:00
|
|
|
c-ares
|
|
|
|
cjson
|
|
|
|
libuuid
|
|
|
|
libuv
|
2021-11-23 18:15:33 +00:00
|
|
|
libwebsockets'
|
2021-01-26 16:56:46 +00:00
|
|
|
openssl
|
2019-03-01 10:53:45 +00:00
|
|
|
] ++ lib.optional withSystemd systemd;
|
2018-10-11 09:03:32 +00:00
|
|
|
|
|
|
|
cmakeFlags = [
|
|
|
|
"-DWITH_THREADING=ON"
|
2018-11-12 07:47:26 +00:00
|
|
|
"-DWITH_WEBSOCKETS=ON"
|
2019-03-01 10:53:45 +00:00
|
|
|
] ++ lib.optional withSystemd "-DWITH_SYSTEMD=ON";
|
2018-10-11 09:03:32 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2021-01-26 16:56:46 +00:00
|
|
|
description = "An open source MQTT v3.1/3.1.1/5.0 broker";
|
2019-09-16 04:28:46 +00:00
|
|
|
homepage = "https://mosquitto.org/";
|
2018-10-11 09:03:32 +00:00
|
|
|
license = licenses.epl10;
|
|
|
|
maintainers = with maintainers; [ peterhoeg ];
|
|
|
|
platforms = platforms.unix;
|
2015-02-19 22:53:44 +00:00
|
|
|
};
|
|
|
|
}
|