2019-06-16 20:59:06 +01:00
|
|
|
{ stdenv, lib, fetchFromGitHub, cmake, docbook_xsl, libxslt
|
2019-03-01 10:53:45 +00:00
|
|
|
, openssl, libuuid, libwebsockets, c-ares, libuv
|
2019-04-24 09:22:57 +01:00
|
|
|
, systemd ? null, withSystemd ? stdenv.isLinux }:
|
2015-02-19 22:53:44 +00:00
|
|
|
|
2019-04-24 09:22:57 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2018-10-11 10:03:32 +01:00
|
|
|
name = "mosquitto-${version}";
|
2019-06-23 04:21:25 +01:00
|
|
|
version = "1.6.3";
|
2015-02-19 22:53:44 +00:00
|
|
|
|
2018-10-11 10:03:32 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "eclipse";
|
|
|
|
repo = "mosquitto";
|
|
|
|
rev = "v${version}";
|
2019-06-23 04:21:25 +01:00
|
|
|
sha256 = "1xvfcqi6pa5pdnqd88gz9qx6kl2q47xp7l3q5wwgj0l9y9mlxp99";
|
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
|
|
|
|
2018-11-12 07:47:26 +00:00
|
|
|
for f in {lib,lib/cpp,src}/CMakeLists.txt ; do
|
2019-03-01 10:53:45 +00:00
|
|
|
substituteInPlace $f --replace /sbin/ldconfig true
|
2018-11-12 07:47:26 +00:00
|
|
|
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
|
|
|
'';
|
|
|
|
|
2019-03-01 10:53:45 +00:00
|
|
|
buildInputs = [
|
|
|
|
openssl libuuid libwebsockets c-ares libuv
|
|
|
|
] ++ lib.optional withSystemd systemd;
|
2018-10-11 10:03:32 +01:00
|
|
|
|
|
|
|
nativeBuildInputs = [ cmake docbook_xsl libxslt ];
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2015-02-19 22:53:44 +00:00
|
|
|
description = "An open source MQTT v3.1/3.1.1 broker";
|
2018-10-11 10:03:32 +01:00
|
|
|
homepage = http://mosquitto.org/;
|
|
|
|
license = licenses.epl10;
|
|
|
|
maintainers = with maintainers; [ peterhoeg ];
|
|
|
|
platforms = platforms.unix;
|
2015-02-19 22:53:44 +00:00
|
|
|
};
|
|
|
|
}
|