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