1
1
mirror of https://github.com/coot/free-category.git synced 2024-11-23 09:55:43 +03:00
free-category/nix/concurrent-output-1.9.2.nix
Marcin Szamotulski 5b2cc8e2b6
Build with ghc802
2018-10-22 23:46:22 +02:00

15 lines
523 B
Nix

{ mkDerivation, ansi-terminal, async, base, directory, exceptions
, process, stdenv, stm, terminal-size, text, transformers, unix
}:
mkDerivation {
pname = "concurrent-output";
version = "1.9.2";
sha256 = "3bc2423adb5cdae14278e718b1335363cc21cd74b370d47dc4e07d2287b2d9f3";
libraryHaskellDepends = [
ansi-terminal async base directory exceptions process stm
terminal-size text transformers unix
];
description = "Ungarble output from several threads or commands";
license = stdenv.lib.licenses.bsd2;
}