summary refs log tree commit diff
path: root/pkgs/servers/amqp
Commit message (Collapse)AuthorAge
* treewide: unzip buildInputs to nativeBuildInputs (#112302)Ben Siraphob2021-02-20
|
* pkgs/servers: stdenv.lib -> libBen Siraphob2021-01-15
|
* treewide: with stdenv.lib; in meta -> with lib;Profpatsch2021-01-11
| | | | | | | | | | | | | | | | | | | 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
* rabbitmq-server: 3.8.8 -> 3.8.9R. RyanTM2020-11-11
|
* rabbitmq-server: 3.8.7 -> 3.8.8R. RyanTM2020-09-24
|
* rabbitmq-server: 3.8.5 -> 3.8.7Lancelot SIX2020-09-24
| | | | | | See https://github.com/rabbitmq/rabbitmq-server/releases/tag/v3.8.6 (license change) and https://github.com/rabbitmq/rabbitmq-server/releases/tag/v3.8.7
* rabbitmq-server: 3.8.4 -> 3.8.5R. RyanTM2020-06-30
|
* rabbitmq: fix darwin buildTae Sandoval2020-05-31
| | | | | | ed16f83 made all dependencies explicit, including systemd, which makes the build step to fail on macOS. Here systemd is added to runtimePath only if the target system is Linux
* rabbitmq-server: 3.8.3 -> 3.8.4R. RyanTM2020-05-28
|
* treewide: Per RFC45, remove all unquoted URLsMichael Reilly2020-04-10
|
* buildPython*: use pnameFrederik Rietdijk2020-03-30
|
* rabbitmq-server: add the VM test to passthru.testsProfpatsch2020-03-10
|
* rabbitmq-server: 3.8.2 -> 3.8.3R. RyanTM2020-03-10
|
* treewide: fix redirected urlsPatrick Hilhorst2020-01-22
| | | | | | | | | | | | | | | | | | | According to https://repology.org/repository/nix_unstable/problems, we have a lot of packages that have http links that redirect to https as their homepage. This commit updates all these packages to use the https links as their homepage. The following script was used to make these updates: ``` curl https://repology.org/api/v1/repository/nix_unstable/problems \ | jq '.[] | .problem' -r \ | rg 'Homepage link "(.+)" is a permanent redirect to "(.+)" and should be updated' --replace 's@$1@$2@' \ | sort | uniq > script.sed find -name '*.nix' | xargs -P4 -- sed -f script.sed -i ```
* rabbitmq: make all dependencies explicitAlexey Lebedeff2020-01-19
| | | | | | | | | | | | | Some things were provided by default, some by systemd unit and some were just miraculously working. This turns them into explicit dependencies of the package itself, making everything properly overrideable. + providing glibcLocales fixes elixir compile warnings + providing systemd dependency allows rabbit to use systemctl for unit activation check instead of falling back to sleep. This was seen as a warning during startup.
* qpid-cpp: fix evalJan Tojnar2019-12-31
|
* treewide: NIX_*_FLAGS -> stringRobin Gloster2019-12-31
|
* Merge gcc-9 into staging (#68029)Frederik Rietdijk2019-12-30
|\
| * qpid-cpp: fix build on darwinFranz Pletz2019-12-27
| |
| * Merge remote-tracking branch 'origin/master' into gcc-9Franz Pletz2019-12-26
| |\
| * | qpid-cpp: 1.37.0 -> 1.39.0, fix build with gcc9Franz Pletz2019-11-07
| | |
* | | treewide: installFlags is a listRobin Gloster2019-12-30
| | |
* | | treewide: update which packages I'm currently maintainingMaximilian Bosch2019-12-26
| |/ |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Idea shamelessly stolen from 4e60b0efae56cc8e1a8a606a5a89462c38aba305. I realized that I don't really know anymore where I'm listed as maintainer and what I'm actually (co)-maintaining which means that I can't proactively take care of packages I officially maintain. As I don't have the time, energy and motivation to take care of stuff I was interested in 1 or 2 years ago (or packaged for someone else in the past), I decided that I make this explicit by removing myself from several packages and adding myself in some other stuff I'm now interested in. I've seen it several times now that people remove themselves from a package without removing the package if it's unmaintained after that which is why I figured that it's fine in my case as the affected pkgs are rather low-prio and were pretty easy to maintain.
* | rabbitmq-server: 3.8.1 -> 3.8.2R. RyanTM2019-12-09
| |
* | qpid-cpp: 1.37.0 -> 1.38.0Maximilian Bosch2019-12-03
|/ | | | https://qpid.apache.org/releases/qpid-cpp-1.38.0/index.html
* rabbitmq-server: 3.8.0 -> 3.8.1R. RyanTM2019-11-04
|
* rabbitmq-server: 3.7.18 -> 3.8.0R. RyanTM2019-10-27
| | | | | | | Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/rabbitmq-server/versions
* rabbitmq-server: 3.7.17 -> 3.7.18R. RyanTM2019-10-04
| | | | | | | Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/rabbitmq-server/versions
* Merge remote-tracking branch 'origin/master' into gcc-8Franz Pletz2019-09-03
|\
| * treewide: name -> pname (easy cases) (#66585)volth2019-08-15
| | | | | | | | | | | | | | | | | | treewide replacement of stdenv.mkDerivation rec { name = "*-${version}"; version = "*"; to pname
* | Merge remote-tracking branch 'upstream/master' into gcc-8Robin Gloster2019-08-25
|\|
| * rabbitmq-server: 3.7.16 -> 3.7.17R. RyanTM2019-08-09
| | | | | | | | | | | | | | Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/rabbitmq-server/versions
| * Merge pull request #64803 from serokell/elixir19Daiderd Jordan2019-07-19
| |\ | | | | | | elixir: default 1.7.4 -> 1.9.0
| | * rabbitmq-server: bump elixir dependency to 1.8Yorick van Pelt2019-07-16
| | |
| * | rabbitmq-server: 3.7.15 -> 3.7.16R. RyanTM2019-07-17
| |/ | | | | | | | | | | | | Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/rabbitmq-server/versions
* / qpid-cpp: fix build with gcc8Robin Gloster2019-06-17
|/
* rabbitmq-server: 3.7.14 -> 3.7.15R. RyanTM2019-06-03
| | | | | | | Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/rabbitmq-server/versions
* rabbitmq-server: 3.7.12 -> 3.7.14R. RyanTM2019-04-16
| | | | | | | Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/rabbitmq-server/versions
* rabbitmq-server: 3.7.11 -> 3.7.12R. RyanTM2019-03-03
| | | | | | | Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/rabbitmq-server/versions
* rabbitmq-server: 3.7.10 -> 3.7.11R. RyanTM2019-02-06
| | | | | | | Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/rabbitmq-server/versions
* rabbitmq-server: 3.7.9 -> 3.7.10R. RyanTM2019-01-19
| | | | | | | Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/rabbitmq-server/versions
* rabbitmq-server: 3.7.8 -> 3.7.9 (#50573)R. RyanTM2018-11-18
| | | | | | Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/rabbitmq-server/versions
* rabbitmq-server: 3.6.10 -> 3.7.8Alexey Lebedeff2018-09-25
| | | | | | | | | | | - New dependency on 'getconf' binary for https://github.com/rabbitmq/rabbitmq-common/blob/3aa619e9ef81cfe6db0c776e6cd829ce234a7881/src/vm_memory_monitor.erl#L448 - New dependency on 'socat' for systemd notifications https://github.com/rabbitmq/rabbitmq-server/blob/4a3ee3a336bc82f2e56ec5d2292c80458ccc2974/src/rabbit.erl#L361 - elixir_1_6 for a new 'rabbitmqctl' tool - Replace patching with providing custom PATH, as we already have some other things here - Renamed package in all-packages.nix from a legacy spelling
* pkgs/*: remove unreferenced function argumentsvolth2018-07-21
|
* qpid-cpp: fix build after #28029Orivej Desh2018-06-01
| | | | | | | | When -O2 from hardening does not redefine -O3 from CMake, the build fails with: src/qpid/broker/SelectorExpression.cpp: In member function ‘qpid::broker::Expression* qpid::broker::Parse::orExpression(qpid::broker::Tokeniser&)’: src/qpid/broker/SelectorExpression.cpp:1041:13: error: ‘*((void*)& s +17)’ may be used uninitialized in this function [-Werror=maybe-uninitialized] if (s[1]=='b' || s[1]=='B') {
* rabbitmq-server: use provided getconfMatthew Bauer2018-04-10
|
* qpid-cpp: fix buildMaximilian Bosch2018-03-27
| | | | | | | | | | | | | | | | | | | | | | | The compilation broke due to the flag `-Werror=int-in-bool-context` which caused several compilation errors with GCC v7. Disabling this warning manually with `-Wno-error` in `NIX_CFLAGS_COMPILE` should be fine. This package experienced several radical changes as the entire python build in `$src/management/python` was broken since the given Python interpreter missed several needed modules (including `pythonPackages.qpid-python`). As the CMake build tried to invoke the affected `setup.py` manually and patched the shebangs with `disutil` and caused non-functional executables, I split the package up into two parts, the actual `qpid-cpp` lib and the Python module that will be composed using `buildEnv`. Furthermore I added myself as maintainer for the package as the diff became quite huge and we should have more folks available to maintain this. See https://hydra.nixos.org/build/71519082/log See tickets #36453 and #31747
* qpid-cpp: 0.34 -> 1.37.0Carles Pagès2018-03-06
|
* rabbitmq: 3.6.10 -> 3.6.15 (and various improvements)Profpatsch2018-02-22
| | | | | | | | | | - split outputs (doc, man, out) - a new runtime dependency on getconf - fix up SCRIPTS_DIR in wrapper - clean output folder of stray doc files - add license & maintainer Tested with `nixos/tests/rabbitmq.nix`, inside a docker image and manually.
* qpid-cpp: fix buildRobin Gloster2017-09-28
|