about summary refs log tree commit diff
path: root/pkgs/servers/mqtt
AgeCommit message (Collapse)AuthorFilesLines
2022-01-07mosquitto: 2.0.12 -> 2.0.14datafoo1-2/+2
2021-11-23mosquitto: use libwebsockets 4.xRick van Schijndel1-2/+8
This requires us to enable LWS_WITH_EXTERNAL_POLL. Since only mosquitto needs that and upstream discourages enabling it, we'll just do it in an override in mosquitto.
2021-09-01mosquitto: 2.0.11 -> 2.0.12Thomas Gerbet1-2/+2
https://github.com/eclipse/mosquitto/blob/v2.0.12/ChangeLog.txt
2021-08-10mosquitto: 2.0.10 -> 2.0.11Thomas Gerbet1-2/+12
Fixes CVE-2021-34431. https://github.com/eclipse/mosquitto/blob/v2.0.11/ChangeLog.txt
2021-04-05mosquitto: 1.6.12 -> 2.0.10Pavol Rusnak1-16/+29
2021-01-11treewide: with stdenv.lib; in meta -> with lib;Profpatsch1-1/+1
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
2020-11-03mosquitto: 1.6.11 -> 1.6.12R. RyanTM1-2/+2
2020-08-15mosquitto: 1.6.10 -> 1.6.11R. RyanTM1-2/+2
2020-06-16mosquitto: 1.6.8 -> 1.6.10R. RyanTM1-2/+2
2020-01-22mosquitto: 1.6.7 -> 1.6.8R. RyanTM1-2/+2
2019-10-23mosquitto: 1.6.6 -> 1.6.7R. RyanTM1-2/+2
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/mosquitto/versions
2019-09-19mosquitto: 1.6.5 -> 1.6.6Peter Hoeg1-2/+2
2019-09-16mosquitto: 1.6.4 -> 1.6.5Peter Hoeg1-5/+5
2019-08-17Merge staging-next into stagingFrederik Rietdijk1-2/+2
2019-08-15treewide: name -> pname (easy cases) (#66585)volth1-1/+1
treewide replacement of stdenv.mkDerivation rec { name = "*-${version}"; version = "*"; to pname
2019-08-04mosquitto: 1.6.3 -> 1.6.4R. RyanTM1-2/+2
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/mosquitto/versions
2019-06-23mosquitto: 1.6.2 -> 1.6.3Peter Hoeg1-2/+2
2019-06-16treewide: remove unused variables (#63177)volth1-1/+1
* treewide: remove unused variables * making ofborg happy
2019-06-03mosquitto: 1.6.1 -> 1.6.2 (#62480)R. RyanTM1-2/+2
Security release: http://mosquitto.org/blog/2019/04/version-1-6-2-released/
2019-05-01mosquitto: 1.6 -> 1.6.1R. RyanTM1-2/+2
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/mosquitto/versions
2019-04-24mosquitto: 1.5.8 -> 1.6Peter Hoeg1-9/+4
2019-03-01mosquitto: 1.5.5 -> 1.5.8 and add systemd supportPeter Hoeg1-10/+18
2019-01-03mosquitto: 1.5.4 -> 1.5.5R. RyanTM1-2/+2
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/mosquitto/versions
2018-12-15mosquitto: 1.5.3 -> 1.5.4Rickard Nilsson1-11/+2
Remove patch that has been merged upstrem.
2018-11-12mosquitto: enable websockets supportPeter Hoeg1-0/+5
2018-10-25mosquitto: 1.4.15 -> 1.5.3Peter Hoeg1-23/+38
Use cmake on all platforms instead of only macos.
2018-03-09mosquitto: 1.4.14 -> 1.4.15Ryan Mulligan1-2/+2
Semi-automatic update. These checks were done: - built on NixOS - Warning: no binary found that responded to help or version flags. (This warning appears even if the package isn't expected to have binaries.) - found 1.4.15 with grep in /nix/store/7nifpbj16dlhljb2jwbwxyv4wx1zwa1y-mosquitto-1.4.15 - found 1.4.15 in filename of file in /nix/store/7nifpbj16dlhljb2jwbwxyv4wx1zwa1y-mosquitto-1.4.15
2017-09-28mosquitto: fix darwin build (#29851)volth1-2/+2
2017-09-20libwebsockets: revert making libuv a propagated build inputJörg Thalheim1-2/+2
it is possible to use libwebsockets without libuv cc @volth
2017-09-19mosquitto: 1.4 -> 1.4.14Volth1-6/+5
fixes #29567
2016-09-14mosquitto: add websockets support.Matthew O'Gorman1-2/+5
2016-08-16mosquitto: use cmake for darwinMatthew Bauer1-2/+3
Makefile says this: Please compile using CMake on Mac OS X.
2016-02-20mosquitto: Use built-in Makefile for installation.Moritz Ulrich1-4/+7
This will also install man pages, client-binaries (mosquitto_sub, mosquitto_pub), libs, headers, etc.
2015-02-21Add Mosquitto MQTT server packageSuvash Thapaliya1-0/+30
as of now it is just built and copied to the right place so that the server can be run. hopefully i will be tweaking with the configuration files in the future and tweak this a bit more