]> woffs.de Git - fd/haskell-amqp-utils.git/blob - amqp.nix
formatting
[fd/haskell-amqp-utils.git] / amqp.nix
1 { stdenv, mkDerivation, base, binary, bytestring, clock, connection
2  , containers, data-binary-ieee754, hspec, hspec-expectations
3  , monad-control, network, network-uri, split, stm, text, vector
4  , xml
5  }:
6  mkDerivation {
7    pname = "amqp";
8    version = "0.19.0";
9    sha256 = "1v2jwf9y6mw9f89a9ca66p42da8g5n1ain89gjr7sv6v6r2jxinj";
10    isLibrary = true;
11    isExecutable = true;
12    libraryHaskellDepends = [
13      base binary bytestring clock connection containers
14      data-binary-ieee754 monad-control network network-uri split stm
15      text vector
16    ];
17    executableHaskellDepends = [ base containers xml ];
18    testHaskellDepends = [
19      base binary bytestring clock connection containers
20      data-binary-ieee754 hspec hspec-expectations network network-uri
21      split stm text vector
22    ];
23    homepage = "https://github.com/hreinhardt/amqp";
24    description = "Client library for AMQP servers (currently only RabbitMQ)";
25    license = stdenv.lib.licenses.bsd3;
26    hydraPlatforms = stdenv.lib.platforms.none;
27  }