2014-04-28 10:18:07 -07:00
|
|
|
{ cabal, async, blazeBuilder, deepseq, hspec, network, QuickCheck
|
2014-05-15 07:09:34 -07:00
|
|
|
, random, text, transformers, zlib
|
2014-03-30 13:03:00 -07:00
|
|
|
}:
|
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "streaming-commons";
|
2014-05-23 07:00:24 -07:00
|
|
|
version = "0.1.3";
|
|
|
|
sha256 = "0zv309lqmv5bgbmxx5k0zk4iyxwj77lwqcaaycizi7559nzvsrh3";
|
2014-05-15 07:09:34 -07:00
|
|
|
buildDepends = [
|
|
|
|
blazeBuilder network random text transformers zlib
|
|
|
|
];
|
2014-04-28 10:18:07 -07:00
|
|
|
testDepends = [
|
|
|
|
async blazeBuilder deepseq hspec network QuickCheck text zlib
|
|
|
|
];
|
2014-03-30 13:03:00 -07:00
|
|
|
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;
|
|
|
|
};
|
|
|
|
})
|