28 lines
979 B
Nix
28 lines
979 B
Nix
{ cabal, attoparsec, blazeBuilder, deepseq, filepath, HUnit, mtl
|
|
, network, primitive, QuickCheck, testFramework, testFrameworkHunit
|
|
, testFrameworkQuickcheck2, text, time, transformers, vector, zlib
|
|
, zlibBindings
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "io-streams";
|
|
version = "1.1.4.0";
|
|
sha256 = "0fkys15ih3ld4l5rqjlsmhdkf9w3xnhj6hbbahazx7pj0xsv1hyh";
|
|
buildDepends = [
|
|
attoparsec blazeBuilder network primitive text time transformers
|
|
vector zlibBindings
|
|
];
|
|
testDepends = [
|
|
attoparsec blazeBuilder deepseq filepath HUnit mtl network
|
|
primitive QuickCheck testFramework testFrameworkHunit
|
|
testFrameworkQuickcheck2 text time transformers vector zlib
|
|
zlibBindings
|
|
];
|
|
configureFlags = "-fNoInteractiveTests";
|
|
meta = {
|
|
description = "Simple, composable, and easy-to-use stream I/O";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.ocharles ];
|
|
};
|
|
})
|