nixpkgs/pkgs/servers/amqp/rabbitmq-server/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

89 lines
2.3 KiB
Nix
Raw Normal View History

2021-08-02 16:13:30 +02:00
{ lib
, stdenv
, fetchurl
, erlang
, elixir
, python2
2021-08-02 16:13:30 +02:00
, libxml2
, libxslt
, xmlto
, docbook_xml_dtd_45
, docbook_xsl
, zip
, unzip
, rsync
, getconf
, socat
, procps
, coreutils
, gnused
, systemd
, glibcLocales
, AppKit
, Carbon
, Cocoa
, nixosTests
}:
2018-04-11 01:54:11 +02:00
stdenv.mkDerivation rec {
pname = "rabbitmq-server";
2022-03-24 03:05:08 +01:00
version = "3.9.14";
# when updating, consider bumping elixir version in all-packages.nix
src = fetchurl {
url = "https://github.com/rabbitmq/rabbitmq-server/releases/download/v${version}/${pname}-${version}.tar.xz";
2022-03-24 03:05:08 +01:00
sha256 = "sha256-c6GpB6CSCHiU9hTC9FkxyTc1UpNWxx5iP3y2dbTUfS0=";
};
nativeBuildInputs = [ unzip xmlto docbook_xml_dtd_45 docbook_xsl zip rsync ];
buildInputs = [ erlang elixir python2 libxml2 libxslt glibcLocales ]
2021-01-15 08:07:56 +01:00
++ lib.optionals stdenv.isDarwin [ AppKit Carbon Cocoa ];
outputs = [ "out" "man" "doc" ];
2019-11-05 02:10:31 +01:00
installFlags = [ "PREFIX=$(out)" "RMQ_ERLAPP_DIR=$(out)" ];
installTargets = [ "install" "install-man" ];
preBuild = ''
export LANG=C.UTF-8 # fix elixir locale warning
'';
2021-01-15 08:07:56 +01:00
runtimePath = lib.makeBinPath ([
erlang
getconf # for getting memory limits
2021-08-02 16:13:30 +02:00
socat
procps
gnused
coreutils # used by helper scripts
2021-01-15 08:07:56 +01:00
] ++ lib.optionals stdenv.isLinux [ systemd ]); # for systemd unit activation check
2021-08-02 16:13:30 +02:00
postInstall = ''
# rabbitmq-env calls to sed/coreutils, so provide everything early
sed -i $out/sbin/rabbitmq-env -e '2s|^|PATH=${runtimePath}\''${PATH:+:}\$PATH/\n|'
# We know exactly where rabbitmq is gonna be, so we patch that into the env-script.
# By doing it early we make sure that auto-detection for this will
# never be executed (somewhere below in the script).
sed -i $out/sbin/rabbitmq-env -e "2s|^|RABBITMQ_SCRIPTS_DIR=$out/sbin\n|"
# theres a few stray files that belong into share
mkdir -p $doc/share/doc/rabbitmq-server
mv $out/LICENSE* $doc/share/doc/rabbitmq-server
# and an unecessarily copied INSTALL file
rm $out/INSTALL
'';
passthru.tests = {
vm-test = nixosTests.rabbitmq;
};
2021-08-02 16:13:30 +02:00
meta = with lib; {
homepage = "https://www.rabbitmq.com/";
description = "An implementation of the AMQP messaging protocol";
license = licenses.mpl20;
platforms = platforms.unix;
maintainers = with maintainers; [ turion ];
2021-08-02 16:13:30 +02:00
};
}