haskell-streaming-commons: add version 0.1.0.2

This commit is contained in:
Peter Simons 2014-03-30 22:03:00 +02:00
parent 4a70bdf5e4
commit 9109cff1a1
2 changed files with 19 additions and 0 deletions

View File

@ -0,0 +1,17 @@
{ cabal, deepseq, hspec, network, QuickCheck, text, transformers
, zlib
}:
cabal.mkDerivation (self: {
pname = "streaming-commons";
version = "0.1.0.2";
sha256 = "1idlhvlv5pg20xq8h4rmphyflvpc9q88krwm498mh3s4983ik28c";
buildDepends = [ network text transformers zlib ];
testDepends = [ deepseq hspec QuickCheck text zlib ];
meta = {
homepage = "https://github.com/fpco/streaming-commons";
description = "Common lower-level functions needed by various streaming data libraries";
license = self.stdenv.lib.licenses.mit;
platforms = self.ghc.meta.platforms;
};
})

View File

@ -2258,6 +2258,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.finalReturn x
StrafunskiStrategyLib = callPackage ../development/libraries/haskell/Strafunski-StrategyLib {};
streamingCommons = callPackage ../development/libraries/haskell/streaming-commons {};
streamproc = callPackage ../development/libraries/haskell/streamproc {};
strict = callPackage ../development/libraries/haskell/strict {};