rabbitmq-server: Remove unused builder variable

authored by Robert Hensing and committed by Manuel Bärenz b6fe86fd 6200d85e

+11 -9
+11 -9
pkgs/servers/amqp/rabbitmq-server/default.nix
··· 25 25 , nixosTests 26 26 }: 27 27 28 + let 29 + runtimePath = lib.makeBinPath ([ 30 + erlang 31 + getconf # for getting memory limits 32 + socat 33 + procps 34 + gnused 35 + coreutils # used by helper scripts 36 + ] ++ lib.optionals stdenv.isLinux [ systemd ]); # for systemd unit activation check 37 + in 38 + 28 39 stdenv.mkDerivation rec { 29 40 pname = "rabbitmq-server"; 30 41 version = "3.10.8"; ··· 47 58 preBuild = '' 48 59 export LANG=C.UTF-8 # fix elixir locale warning 49 60 ''; 50 - 51 - runtimePath = lib.makeBinPath ([ 52 - erlang 53 - getconf # for getting memory limits 54 - socat 55 - procps 56 - gnused 57 - coreutils # used by helper scripts 58 - ] ++ lib.optionals stdenv.isLinux [ systemd ]); # for systemd unit activation check 59 61 60 62 postInstall = '' 61 63 # rabbitmq-env calls to sed/coreutils, so provide everything early