mosquitto: 1.6.12 -> 2.0.10

This commit is contained in:
Pavol Rusnak 2021-01-26 17:56:46 +01:00
parent 54c1e44240
commit 3ed74809cc
No known key found for this signature in database
GPG key ID: 91F3B339B9A02A3D

View file

@ -1,16 +1,28 @@
{ stdenv, lib, fetchFromGitHub, cmake, docbook_xsl, libxslt { stdenv
, openssl, libuuid, libwebsockets_3_1, c-ares, libuv , lib
, systemd ? null, withSystemd ? stdenv.isLinux }: , fetchFromGitHub
, cmake
, docbook_xsl
, libxslt
, c-ares
, cjson
, libuuid
, libuv
, libwebsockets_3_1
, openssl
, withSystemd ? stdenv.isLinux
, systemd
}:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "mosquitto"; pname = "mosquitto";
version = "1.6.12"; version = "2.0.10";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "eclipse"; owner = "eclipse";
repo = "mosquitto"; repo = pname;
rev = "v${version}"; rev = "v${version}";
sha256 = "0y9jna2p7wg57vv2g6ls1dj6w89vaw828y9z1wb3vwz1yhvs35s8"; sha256 = "144vw7b9ja4lci4mplbxs048x9aixd9c3s7rg6wc1k31w099rb12";
}; };
postPatch = '' postPatch = ''
@ -19,29 +31,30 @@ stdenv.mkDerivation rec {
--replace http://docbook.sourceforge.net/release/xsl/current ${docbook_xsl}/share/xml/docbook-xsl --replace http://docbook.sourceforge.net/release/xsl/current ${docbook_xsl}/share/xml/docbook-xsl
done done
for f in {lib,lib/cpp,src}/CMakeLists.txt ; do
substituteInPlace $f --replace /sbin/ldconfig true
done
# the manpages are not generated when using cmake # the manpages are not generated when using cmake
pushd man pushd man
make make
popd popd
''; '';
buildInputs = [
openssl libuuid libwebsockets_3_1 c-ares libuv
] ++ lib.optional withSystemd systemd;
nativeBuildInputs = [ cmake docbook_xsl libxslt ]; nativeBuildInputs = [ cmake docbook_xsl libxslt ];
buildInputs = [
c-ares
cjson
libuuid
libuv
libwebsockets_3_1
openssl
] ++ lib.optional withSystemd systemd;
cmakeFlags = [ cmakeFlags = [
"-DWITH_THREADING=ON" "-DWITH_THREADING=ON"
"-DWITH_WEBSOCKETS=ON" "-DWITH_WEBSOCKETS=ON"
] ++ lib.optional withSystemd "-DWITH_SYSTEMD=ON"; ] ++ lib.optional withSystemd "-DWITH_SYSTEMD=ON";
meta = with lib; { meta = with lib; {
description = "An open source MQTT v3.1/3.1.1 broker"; description = "An open source MQTT v3.1/3.1.1/5.0 broker";
homepage = "https://mosquitto.org/"; homepage = "https://mosquitto.org/";
license = licenses.epl10; license = licenses.epl10;
maintainers = with maintainers; [ peterhoeg ]; maintainers = with maintainers; [ peterhoeg ];