Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
43 lines
1.0 KiB
Nix
43 lines
1.0 KiB
Nix
{
|
|
rustPlatform,
|
|
lib,
|
|
fetchFromGitHub,
|
|
pkg-config,
|
|
openssl,
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "rabbitmqadmin-ng";
|
|
version = "2.15.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "rabbitmq";
|
|
repo = "rabbitmqadmin-ng";
|
|
tag = "v${version}";
|
|
hash = "sha256-OaSCqK3VwR5b6tQUfGFM/clHynwG0TgMy2ZEcFsLFx0=";
|
|
};
|
|
|
|
cargoHash = "sha256-dynUbe6UCVdPEpy+fXABhzSsrF/OV5z1eMvrXtzKs70=";
|
|
|
|
buildInputs = [ openssl ];
|
|
nativeBuildInputs = [ pkg-config ];
|
|
|
|
strictDeps = true;
|
|
|
|
# This requires a running rabbitmq instance to communicate with that needs
|
|
# to be set up by hand. It should be possible to run tests in the future
|
|
# if we ever add a `rabbitmqTestHook`, similar to the `postgresqlTestHook`.
|
|
doCheck = false;
|
|
|
|
meta = {
|
|
description = "Command line tool for RabbitMQ that uses the HTTP API";
|
|
teams = [ lib.teams.flyingcircus ];
|
|
homepage = "https://www.rabbitmq.com/docs/management-cli";
|
|
license = with lib.licenses; [
|
|
mit
|
|
asl20
|
|
];
|
|
mainProgram = "rabbitmqadmin";
|
|
};
|
|
}
|