Update haskell-simple-conduit

This commit is contained in:
Shea Levy 2014-07-15 21:36:36 -04:00
parent 9087d03190
commit e33525a139

@ -1,23 +1,22 @@
{ cabal, bifunctors, chunkedData, either, exceptions, filepath
, foldl, liftedAsync, liftedBase, mmorph, monadControl
, free, liftedAsync, liftedBase, mmorph, monadControl
, monoTraversable, mtl, mwcRandom, primitive, semigroups, stm
, streamingCommons, text, transformers, transformersBase, vector
, void
}:
cabal.mkDerivation (self: {
pname = "simple-conduit";
version = "0.4.0";
sha256 = "0r9l0ms396gxkxgj1q33s0v8lim7rj77mhmf5k7wgf9mzydv1y6c";
version = "0.5.0";
sha256 = "0fbm1nv9190p1b038p6zxmw042cgm5jgkfbhscw1fslgzja90iyz";
buildDepends = [
bifunctors chunkedData either exceptions filepath foldl liftedAsync
bifunctors chunkedData either exceptions filepath free liftedAsync
liftedBase mmorph monadControl monoTraversable mtl mwcRandom
primitive semigroups stm streamingCommons text transformers
transformersBase vector void
transformersBase vector
];
meta = {
homepage = "http://github.com/jwiegley/simple-conduit";
description = "A simple streaming library based on composing monadic folds";
description = "A simple streaming I/O library based on monadic folds";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};