mosquitto: 1.6.4 -> 1.6.5
This commit is contained in:
parent
b02b889255
commit
05ee2af77d
|
@ -1,16 +1,16 @@
|
|||
{ stdenv, lib, fetchFromGitHub, cmake, docbook_xsl, libxslt
|
||||
, openssl, libuuid, libwebsockets, c-ares, libuv
|
||||
, openssl, libuuid, libwebsockets_3_1, c-ares, libuv
|
||||
, systemd ? null, withSystemd ? stdenv.isLinux }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "mosquitto";
|
||||
version = "1.6.4";
|
||||
version = "1.6.5";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "eclipse";
|
||||
repo = "mosquitto";
|
||||
rev = "v${version}";
|
||||
sha256 = "1kr1dgc4nzhyg3rzymbv4rka3rpb30rwsy6binb7apnw3n3ff58l";
|
||||
sha256 = "0scgsi3rvs9s8vxv4r7d5d9ixbsfg4dwnjcy6zxwdz9dfn8qnngj";
|
||||
};
|
||||
|
||||
postPatch = ''
|
||||
|
@ -30,7 +30,7 @@ stdenv.mkDerivation rec {
|
|||
'';
|
||||
|
||||
buildInputs = [
|
||||
openssl libuuid libwebsockets c-ares libuv
|
||||
openssl libuuid libwebsockets_3_1 c-ares libuv
|
||||
] ++ lib.optional withSystemd systemd;
|
||||
|
||||
nativeBuildInputs = [ cmake docbook_xsl libxslt ];
|
||||
|
@ -42,7 +42,7 @@ stdenv.mkDerivation rec {
|
|||
|
||||
meta = with stdenv.lib; {
|
||||
description = "An open source MQTT v3.1/3.1.1 broker";
|
||||
homepage = http://mosquitto.org/;
|
||||
homepage = "https://mosquitto.org/";
|
||||
license = licenses.epl10;
|
||||
maintainers = with maintainers; [ peterhoeg ];
|
||||
platforms = platforms.unix;
|
||||
|
|
Loading…
Reference in New Issue