+++ /dev/null
-{ stdenv, mkDerivation, base, binary, bytestring, clock, connection
- , containers, data-binary-ieee754, hspec, hspec-expectations
- , monad-control, network, network-uri, split, stm, text, vector
- , xml
- }:
- mkDerivation {
- pname = "amqp";
- version = "0.18.3";
- sha256 = "1cyzazl3hz5yd2i220b4g8xs0fm47xqlwyvgarxbnn5gnrm8ys21";
- isLibrary = true;
- isExecutable = true;
- libraryHaskellDepends = [
- base binary bytestring clock connection containers
- data-binary-ieee754 monad-control network network-uri split stm
- text vector
- ];
- executableHaskellDepends = [ base containers xml ];
- testHaskellDepends = [
- base binary bytestring clock connection containers
- data-binary-ieee754 hspec hspec-expectations network network-uri
- split stm text vector
- ];
- homepage = "https://github.com/hreinhardt/amqp";
- description = "Client library for AMQP servers (currently only RabbitMQ)";
- license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- }
{ nixpkgs ? import <nixpkgs> {}, compiler ? "" }:
with nixpkgs.pkgs;
with (if haskell.packages ? ${compiler} then haskell.packages.${compiler} else haskellPackages);
-callPackage ./amqp-utils.nix {
- amqp = haskell.lib.dontCheck (callPackage (import ./amqp.nix) {});
-}
+callPackage ./amqp-utils.nix { }