Files
nixpkgs/pkgs/development/ocaml-modules/amqp-client/async.nix

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

30 lines
372 B
Nix
Raw Normal View History

2025-10-09 14:15:47 +02:00
{
buildDunePackage,
async,
uri,
amqp-client,
ezxmlm,
}:
buildDunePackage {
pname = "amqp-client-async";
inherit (amqp-client) version src;
doCheck = true;
buildInputs = [
ezxmlm
];
propagatedBuildInputs = [
amqp-client
async
uri
];
meta = amqp-client.meta // {
description = "Amqp client library, async version";
};
}