cabal2nix-2.9.3: test/golden-test-cases/streaming-commons.nix.golden
{ mkDerivation, array, async, base, blaze-builder, bytestring
, criterion, deepseq, directory, hspec, network, process
, QuickCheck, random, stdenv, stm, text, transformers, unix, zlib
}:
mkDerivation {
pname = "streaming-commons";
version = "0.1.18";
sha256 = "deadbeef";
libraryHaskellDepends = [
array async base blaze-builder bytestring directory network process
random stm text transformers unix zlib
];
testHaskellDepends = [
array async base blaze-builder bytestring deepseq hspec network
QuickCheck text unix zlib
];
benchmarkHaskellDepends = [
base blaze-builder bytestring criterion deepseq text
];
homepage = "https://github.com/fpco/streaming-commons";
description = "Common lower-level functions needed by various streaming data libraries";
license = stdenv.lib.licenses.mit;
}