Skip to content

Commit

Permalink
mosquitto: 1.6.4 -> 1.6.5
Browse files Browse the repository at this point in the history
  • Loading branch information
peterhoeg committed Sep 16, 2019
1 parent b02b889 commit 05ee2af
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions pkgs/servers/mqtt/mosquitto/default.nix
@@ -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 = ''
Expand All @@ -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 ];
Expand All @@ -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;
Expand Down

0 comments on commit 05ee2af

Please sign in to comment.