2013-03-20 10:44:55 +01:00
|
|
|
{ cabal, cereal, conduit, HUnit, mtl, resourcet, transformers }:
|
2013-03-16 15:24:09 +01:00
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "cereal-conduit";
|
2014-04-28 19:17:09 +02:00
|
|
|
version = "0.7.2.2";
|
|
|
|
sha256 = "1syqilka5rv2j3yp419f2wdrcfw8js6i2p7qif4yxvlkm2hkvzzk";
|
2014-04-11 10:14:26 +02:00
|
|
|
buildDepends = [ cereal conduit resourcet transformers ];
|
2013-03-20 10:44:55 +01:00
|
|
|
testDepends = [ cereal conduit HUnit mtl resourcet transformers ];
|
2013-03-16 15:24:09 +01:00
|
|
|
meta = {
|
2014-04-28 19:17:09 +02:00
|
|
|
homepage = "https://github.com/snoyberg/conduit";
|
2013-03-16 15:24:09 +01:00
|
|
|
description = "Turn Data.Serialize Gets and Puts into Sources, Sinks, and Conduits";
|
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
|
|
|
};
|
|
|
|
})
|