haskell-amqp: update to version 0.7.0

This commit is contained in:
Peter Simons 2013-10-19 11:26:04 +02:00
parent 4665430ff6
commit 7e3384d9a8

View File

@ -1,12 +1,19 @@
{ cabal, binary, dataBinaryIeee754, network, text, xml }:
{ cabal, binary, clock, dataBinaryIeee754, hspec, hspecExpectations
, network, split, text, xml
}:
cabal.mkDerivation (self: {
pname = "amqp";
version = "0.6.0";
sha256 = "0rfczmhf46sc3pxxb5gwv4ggsxkqkvdi4kkqdnrdpdhs7p41im2n";
version = "0.7.0";
sha256 = "09zazmbdw8nphbjkmixn2dpwdgkjqjfbn6jv522ykvrcnsn35kc4";
isLibrary = true;
isExecutable = true;
buildDepends = [ binary dataBinaryIeee754 network text xml ];
buildDepends = [
binary clock dataBinaryIeee754 network split text xml
];
testDepends = [
binary dataBinaryIeee754 hspec hspecExpectations network split text
];
meta = {
homepage = "https://github.com/hreinhardt/amqp";
description = "Client library for AMQP servers (currently only RabbitMQ)";