nixpkgs/pkgs/development/libraries/haskell/cereal-conduit/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

16 lines
582 B
Nix

{ cabal, cereal, conduit, HUnit, mtl, resourcet, transformers }:
cabal.mkDerivation (self: {
pname = "cereal-conduit";
version = "0.7";
sha256 = "0cf0lp47qiilrdrzmn58hwh3q7fh7g55f2a1r1bw31xapp1cvbix";
buildDepends = [ cereal conduit transformers ];
testDepends = [ cereal conduit HUnit mtl resourcet transformers ];
meta = {
homepage = "https://github.com/litherum/cereal-conduit";
description = "Turn Data.Serialize Gets and Puts into Sources, Sinks, and Conduits";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})