mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
89 lines
2.2 KiB
Nix
89 lines
2.2 KiB
Nix
{ lib
|
||
, stdenv
|
||
, fetchurl
|
||
, erlang
|
||
, elixir
|
||
, python
|
||
, libxml2
|
||
, libxslt
|
||
, xmlto
|
||
, docbook_xml_dtd_45
|
||
, docbook_xsl
|
||
, zip
|
||
, unzip
|
||
, rsync
|
||
, getconf
|
||
, socat
|
||
, procps
|
||
, coreutils
|
||
, gnused
|
||
, systemd
|
||
, glibcLocales
|
||
, AppKit
|
||
, Carbon
|
||
, Cocoa
|
||
, nixosTests
|
||
}:
|
||
|
||
stdenv.mkDerivation rec {
|
||
pname = "rabbitmq-server";
|
||
version = "3.9.8";
|
||
|
||
# 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";
|
||
sha256 = "sha256-l77pOFNzw83Qj+MbnwGiClA7HIGvAtI0N/9k12GV7lU=";
|
||
};
|
||
|
||
nativeBuildInputs = [ unzip xmlto docbook_xml_dtd_45 docbook_xsl zip rsync ];
|
||
buildInputs = [ erlang elixir python libxml2 libxslt glibcLocales ]
|
||
++ lib.optionals stdenv.isDarwin [ AppKit Carbon Cocoa ];
|
||
|
||
outputs = [ "out" "man" "doc" ];
|
||
|
||
installFlags = [ "PREFIX=$(out)" "RMQ_ERLAPP_DIR=$(out)" ];
|
||
installTargets = [ "install" "install-man" ];
|
||
|
||
preBuild = ''
|
||
export LANG=C.UTF-8 # fix elixir locale warning
|
||
'';
|
||
|
||
runtimePath = lib.makeBinPath ([
|
||
erlang
|
||
getconf # for getting memory limits
|
||
socat
|
||
procps
|
||
gnused
|
||
coreutils # used by helper scripts
|
||
] ++ lib.optionals stdenv.isLinux [ systemd ]); # for systemd unit activation check
|
||
|
||
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|"
|
||
|
||
# there’s 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;
|
||
};
|
||
|
||
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 ];
|
||
};
|
||
}
|