mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-16 17:14:00 +00:00
rabbitmq-server: fix management agent crash when calling ps on macOS (#357337)
This commit is contained in:
commit
26b1258a93
@ -33,12 +33,14 @@ let
|
|||||||
erlang
|
erlang
|
||||||
getconf # for getting memory limits
|
getconf # for getting memory limits
|
||||||
socat
|
socat
|
||||||
procps
|
|
||||||
gnused
|
gnused
|
||||||
coreutils # used by helper scripts
|
coreutils # used by helper scripts
|
||||||
]
|
]
|
||||||
++ lib.optionals stdenv.hostPlatform.isLinux [ systemd ]
|
++ lib.optionals stdenv.hostPlatform.isLinux [
|
||||||
); # for systemd unit activation check
|
procps # the built-in macOS version has extra entitlements to read rss
|
||||||
|
systemd # for systemd unit activation check
|
||||||
|
]
|
||||||
|
);
|
||||||
in
|
in
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
|
Loading…
Reference in New Issue
Block a user