summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/amqp/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/libraries/haskell/amqp/default.nix')
-rw-r--r--pkgs/development/libraries/haskell/amqp/default.nix23
1 files changed, 23 insertions, 0 deletions
diff --git a/pkgs/development/libraries/haskell/amqp/default.nix b/pkgs/development/libraries/haskell/amqp/default.nix
new file mode 100644
index 000000000000..432d353a0af6
--- /dev/null
+++ b/pkgs/development/libraries/haskell/amqp/default.nix
@@ -0,0 +1,23 @@
+{ cabal, binary, clock, dataBinaryIeee754, hspec, hspecExpectations
+, network, split, text, xml
+}:
+
+cabal.mkDerivation (self: {
+  pname = "amqp";
+  version = "0.7.0";
+  sha256 = "09zazmbdw8nphbjkmixn2dpwdgkjqjfbn6jv522ykvrcnsn35kc4";
+  isLibrary = true;
+  isExecutable = true;
+  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)";
+    license = self.stdenv.lib.licenses.bsd3;
+    platforms = self.ghc.meta.platforms;
+  };
+})