summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2013-10-19 11:26:04 +0200
committerPeter Simons <simons@cryp.to>2013-10-19 11:29:28 +0200
commit7e3384d9a87aa1d9d9f0caf91db71cc891f7c6db (patch)
tree5e9ef16e6ffd0b7eda3d4f29ec3b87cef4863586 /pkgs/development
parent4665430ff6a64293b249e746562b4e0a19c15f73 (diff)
downloadnixlib-7e3384d9a87aa1d9d9f0caf91db71cc891f7c6db.tar
nixlib-7e3384d9a87aa1d9d9f0caf91db71cc891f7c6db.tar.gz
nixlib-7e3384d9a87aa1d9d9f0caf91db71cc891f7c6db.tar.bz2
nixlib-7e3384d9a87aa1d9d9f0caf91db71cc891f7c6db.tar.lz
nixlib-7e3384d9a87aa1d9d9f0caf91db71cc891f7c6db.tar.xz
nixlib-7e3384d9a87aa1d9d9f0caf91db71cc891f7c6db.tar.zst
nixlib-7e3384d9a87aa1d9d9f0caf91db71cc891f7c6db.zip
haskell-amqp: update to version 0.7.0
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/libraries/haskell/amqp/default.nix15
1 files changed, 11 insertions, 4 deletions
diff --git a/pkgs/development/libraries/haskell/amqp/default.nix b/pkgs/development/libraries/haskell/amqp/default.nix
index 70e86ef1ffb7..432d353a0af6 100644
--- a/pkgs/development/libraries/haskell/amqp/default.nix
+++ b/pkgs/development/libraries/haskell/amqp/default.nix
@@ -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)";