1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/development/libraries/haskell/zeromq3-haskell/default.nix
Peter Simons a30df95691 Re-generate all Haskell packages with the latest version of cabal2nix.
This change brings support for building and running the regressions test suites.
2013-02-25 00:32:40 +01:00

20 lines
534 B
Nix

{ cabal, QuickCheck, testFramework, testFrameworkQuickcheck2
, zeromq
}:
cabal.mkDerivation (self: {
pname = "zeromq3-haskell";
version = "0.2";
sha256 = "12qljfkcd4l9h3l80jibxgw2an6v782w0sxwvzxqmma29jv6hvky";
testDepends = [
QuickCheck testFramework testFrameworkQuickcheck2
];
extraLibraries = [ zeromq ];
meta = {
homepage = "http://github.com/twittner/zeromq-haskell/";
description = "Bindings to ZeroMQ 3.x";
license = self.stdenv.lib.licenses.mit;
platforms = self.ghc.meta.platforms;
};
})