Skip to content
Snippets Groups Projects
Commit e743628d authored by Daniel Firth's avatar Daniel Firth
Browse files

concurrent-output: init at 1.10.16

parent 8963bc1d
No related merge requests found
......@@ -142,6 +142,7 @@ in [ callHackage "Cabal" "3.8.1.0"
, callHackage "composite-dhall" "0.1.0.1"
, callHackage "composite-lens-extra" "0.1.0.0"
, callHackage "composite-tuple" "0.1.2.0"
, callHackage "concurrent-output" "1.10.16"
, callHackage "conduit" "1.3.4.2"
, callHackage "conduit-extra" "1.3.6"
, callHackage "config-ini" "0.2.5.0"
......
......@@ -151,6 +151,8 @@ final: prev: with pkgs.haskell.lib; {
composite-tuple = prev.callPackage (./pkgs/composite-tuple.nix) { };
concurrent-output = prev.callPackage (./pkgs/concurrent-output.nix) { };
conduit = prev.callPackage (./pkgs/conduit.nix) { };
conduit-extra = prev.callPackage (./pkgs/conduit-extra.nix) { };
......
{ mkDerivation
, ansi-terminal
, async
, base
, directory
, exceptions
, lib
, process
, stm
, terminal-size
, text
, transformers
, unix
}:
mkDerivation {
pname = "concurrent-output";
version = "1.10.16";
sha256 = "b0aa45d8707f504623ed8abc67873bc139fefdb3e391e054c6adad82e7029350";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [
ansi-terminal
async
base
directory
exceptions
process
stm
terminal-size
text
transformers
unix
];
enableLibraryProfiling = false;
enableExecutableProfiling = false;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
description = "Ungarble output from several threads or commands";
license = lib.licenses.bsd2;
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