2013-03-20 09:44:55 +00:00
|
|
|
{ cabal, cereal, conduit, HUnit, mtl, resourcet, transformers }:
|
2013-03-16 14:24:09 +00:00
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "cereal-conduit";
|
|
|
|
version = "0.7";
|
|
|
|
sha256 = "0cf0lp47qiilrdrzmn58hwh3q7fh7g55f2a1r1bw31xapp1cvbix";
|
2013-03-20 09:44:55 +00:00
|
|
|
buildDepends = [ cereal conduit transformers ];
|
|
|
|
testDepends = [ cereal conduit HUnit mtl resourcet transformers ];
|
2013-03-16 14:24:09 +00:00
|
|
|
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;
|
|
|
|
};
|
|
|
|
})
|