2021-01-26 16:56:46 +00:00
|
|
|
{ stdenv
|
|
|
|
, lib
|
|
|
|
, fetchFromGitHub
|
|
|
|
, cmake
|
|
|
|
, docbook_xsl
|
|
|
|
, libxslt
|
|
|
|
, c-ares
|
|
|
|
, cjson
|
|
|
|
, libuuid
|
|
|
|
, libuv
|
|
|
|
, libwebsockets_3_1
|
|
|
|
, openssl
|
|
|
|
, withSystemd ? stdenv.isLinux
|
|
|
|
, systemd
|
|
|
|
}:
|
2015-02-19 22:53:44 +00:00
|
|
|
|
2019-04-24 09:22:57 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "mosquitto";
|
2021-01-26 16:56:46 +00:00
|
|
|
version = "2.0.10";
|
2015-02-19 22:53:44 +00:00
|
|
|
|
2018-10-11 10:03:32 +01:00
|
|
|
src = fetchFromGitHub {
|
2021-01-26 16:56:46 +00:00
|
|
|
owner = "eclipse";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "144vw7b9ja4lci4mplbxs048x9aixd9c3s7rg6wc1k31w099rb12";
|
2015-02-19 22:53:44 +00:00
|
|
|
};
|
|
|
|
|
2017-09-28 20:15:42 +01: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 10:03:32 +01: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
|
|
|
|
libwebsockets_3_1
|
|
|
|
openssl
|
2019-03-01 10:53:45 +00:00
|
|
|
] ++ lib.optional withSystemd systemd;
|
2018-10-11 10:03:32 +01: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 10:03:32 +01: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 05:28:46 +01:00
|
|
|
homepage = "https://mosquitto.org/";
|
2018-10-11 10:03:32 +01:00
|
|
|
license = licenses.epl10;
|
|
|
|
maintainers = with maintainers; [ peterhoeg ];
|
|
|
|
platforms = platforms.unix;
|
2015-02-19 22:53:44 +00:00
|
|
|
};
|
|
|
|
}
|