nixpkgs/pkgs/development/libraries/haskell/amqp/default.nix

26 lines
766 B
Nix
Raw Normal View History

2014-02-21 23:33:30 +01:00
{ cabal, binary, clock, connection, dataBinaryIeee754, hspec
, hspecExpectations, monadControl, network, split, text, xml
2013-10-19 11:26:04 +02:00
}:
cabal.mkDerivation (self: {
pname = "amqp";
2014-02-21 23:33:30 +01:00
version = "0.8.1";
sha256 = "10infzs2siw9vv8jgsndv7c82bsh22cs2drrb73nxpwf73hy3rzm";
isLibrary = true;
isExecutable = true;
2013-10-19 11:26:04 +02:00
buildDepends = [
2014-02-21 23:33:30 +01:00
binary clock connection dataBinaryIeee754 monadControl network
split text xml
2013-10-19 11:26:04 +02:00
];
testDepends = [
2014-02-21 23:33:30 +01:00
binary clock connection dataBinaryIeee754 hspec hspecExpectations
network split text
2013-10-19 11:26:04 +02:00
];
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;
};
})