2013-02-24 21:09:07 +00:00
|
|
|
{ cabal, QuickCheck, testFramework, testFrameworkQuickcheck2
|
|
|
|
, zeromq
|
|
|
|
}:
|
2011-12-14 08:31:14 +00:00
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "zeromq-haskell";
|
2012-03-09 10:01:19 +00:00
|
|
|
version = "0.8.4";
|
|
|
|
sha256 = "0lvjszi08r5wm5ch03153y7lir6cdgqr2gnhq45j4b0kid6gkpv3";
|
2013-02-24 21:09:07 +00:00
|
|
|
testDepends = [
|
|
|
|
QuickCheck testFramework testFrameworkQuickcheck2
|
|
|
|
];
|
2011-12-14 08:31:14 +00:00
|
|
|
extraLibraries = [ zeromq ];
|
|
|
|
meta = {
|
|
|
|
homepage = "http://github.com/twittner/zeromq-haskell/";
|
2011-12-19 13:27:53 +00:00
|
|
|
description = "Bindings to ZeroMQ 2.1.x";
|
2011-12-14 08:31:14 +00:00
|
|
|
license = self.stdenv.lib.licenses.mit;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
2013-05-10 23:36:36 +01:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-12-14 08:31:14 +00:00
|
|
|
};
|
|
|
|
})
|