nixpkgs/pkgs/servers/mqtt/mosquitto/default.nix

48 lines
1.2 KiB
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, fetchpatch, cmake, docbook_xsl, libxslt
, openssl, libuuid, libwebsockets, c-ares, libuv }:
stdenv.mkDerivation rec {
name = "mosquitto-${version}";
version = "1.5.5";
src = fetchFromGitHub {
owner = "eclipse";
repo = "mosquitto";
rev = "v${version}";
sha256 = "1sfwmvrglfy5gqfk004kvbjldqr36dqz6xmppbgfhr47j5zs66xc";
};
2017-09-28 19:15:42 +00:00
postPatch = ''
substituteInPlace man/manpage.xsl \
--replace /usr/share/xml/docbook/stylesheet/ ${docbook_xsl}/share/xml/
2018-11-12 07:47:26 +00:00
for f in {lib,lib/cpp,src}/CMakeLists.txt ; do
substituteInPlace $f --replace /sbin/ldconfig ldconfig
done
# the manpages are not generated when using cmake
pushd man
make
popd
'';
buildInputs = [ openssl libuuid libwebsockets c-ares libuv ];
nativeBuildInputs = [ cmake docbook_xsl libxslt ];
enableParallelBuilding = true;
cmakeFlags = [
"-DWITH_THREADING=ON"
2018-11-12 07:47:26 +00:00
"-DWITH_WEBSOCKETS=ON"
];
meta = with stdenv.lib; {
description = "An open source MQTT v3.1/3.1.1 broker";
homepage = http://mosquitto.org/;
license = licenses.epl10;
maintainers = with maintainers; [ peterhoeg ];
platforms = platforms.unix;
};
}