nixpkgs/pkgs/development/libraries/haskell/zeromq-haskell/default.nix
Peter Simons 3b2254a3af Remove myself from the meta.maintainer field of most Haskell packages.
There is no point in receiving hundreds of e-mails; I cannot read them anyway.
2013-05-11 00:36:59 +02:00

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 ];
};
})