forked from mirrors/nixpkgs
Add haskell-simple-conduit
This commit is contained in:
parent
654c88cc6b
commit
9087d03190
|
@ -0,0 +1,24 @@
|
|||
{ cabal, bifunctors, chunkedData, either, exceptions, filepath
|
||||
, foldl, 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";
|
||||
buildDepends = [
|
||||
bifunctors chunkedData either exceptions filepath foldl liftedAsync
|
||||
liftedBase mmorph monadControl monoTraversable mtl mwcRandom
|
||||
primitive semigroups stm streamingCommons text transformers
|
||||
transformersBase vector void
|
||||
];
|
||||
meta = {
|
||||
homepage = "http://github.com/jwiegley/simple-conduit";
|
||||
description = "A simple streaming library based on composing monadic folds";
|
||||
license = self.stdenv.lib.licenses.bsd3;
|
||||
platforms = self.ghc.meta.platforms;
|
||||
};
|
||||
})
|
|
@ -2023,6 +2023,8 @@ self : let callPackage = x : y : modifyPrio (newScope self x y); in
|
|||
shelly_1_5_3_1 = callPackage ../development/libraries/haskell/shelly {};
|
||||
shelly = self.shelly_1_5_3_1;
|
||||
|
||||
simpleConduit = callPackage ../development/libraries/haskell/simple-conduit {};
|
||||
|
||||
simpleReflect = callPackage ../development/libraries/haskell/simple-reflect {};
|
||||
|
||||
simpleSendfile = callPackage ../development/libraries/haskell/simple-sendfile {};
|
||||
|
|
Loading…
Reference in a new issue