Skip to content
Snippets Groups Projects
Commit 5a88469b authored by Max Tomago's avatar Max Tomago Committed by Daniel Firth
Browse files

io-streams: init at 1.5.2.2

parent 514c50af
Branches
No related merge requests found
......@@ -205,6 +205,7 @@ let otherLibraries =
, H.callHackage "hxt-unicode" "9.0.2.4"
, callIoSim "io-classes" "io-classes"
, callIoSim "io-sim" "io-sim"
, H.callHackage "io-streams" "1.5.2.2"
, H.callHackage "inline-c" "0.9.1.6"
, H.callCabal2nix
"inline-r"
......
......@@ -161,6 +161,8 @@ final: prev: with pkgs.haskell.lib; {
io-sim = final.callPackage (./pkgs/io-sim.nix) { };
io-streams = final.callPackage (./pkgs/io-streams.nix) { };
katip = final.callPackage (./pkgs/katip.nix) { };
lazy-search = final.callPackage (./pkgs/lazy-search.nix) { };
......
{ mkDerivation
, HUnit
, QuickCheck
, attoparsec
, base
, bytestring
, deepseq
, directory
, filepath
, lib
, mtl
, network
, primitive
, process
, test-framework
, test-framework-hunit
, test-framework-quickcheck2
, text
, time
, transformers
, vector
, zlib
, zlib-bindings
}:
mkDerivation {
pname = "io-streams";
version = "1.5.2.2";
sha256 = "d365d5051696c15414ebe23749fc67475a532234b7c7d77060323d149a8fc4fe";
configureFlags = [ "-fnointeractivetests" ];
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [
attoparsec
base
bytestring
network
primitive
process
text
time
transformers
vector
zlib-bindings
];
testHaskellDepends = [
attoparsec
base
bytestring
deepseq
directory
filepath
HUnit
mtl
network
primitive
process
QuickCheck
test-framework
test-framework-hunit
test-framework-quickcheck2
text
time
transformers
vector
zlib
zlib-bindings
];
enableLibraryProfiling = true;
enableExecutableProfiling = true;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
description = "Simple, composable, and easy-to-use stream I/O";
license = lib.licenses.bsd3;
broken = false;
}
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment