3b2254a3af
There is no point in receiving hundreds of e-mails; I cannot read them anyway.
21 lines
595 B
Nix
21 lines
595 B
Nix
{ cabal, QuickCheck, testFramework, testFrameworkQuickcheck2
|
|
, zeromq
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "zeromq-haskell";
|
|
version = "0.8.4";
|
|
sha256 = "0lvjszi08r5wm5ch03153y7lir6cdgqr2gnhq45j4b0kid6gkpv3";
|
|
testDepends = [
|
|
QuickCheck testFramework testFrameworkQuickcheck2
|
|
];
|
|
extraLibraries = [ zeromq ];
|
|
meta = {
|
|
homepage = "http://github.com/twittner/zeromq-haskell/";
|
|
description = "Bindings to ZeroMQ 2.1.x";
|
|
license = self.stdenv.lib.licenses.mit;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|