aboutsummaryrefslogtreecommitdiff
path: root/tprint/tprint.nix
diff options
context:
space:
mode:
Diffstat (limited to 'tprint/tprint.nix')
-rw-r--r--tprint/tprint.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/tprint/tprint.nix b/tprint/tprint.nix
index ace6210..3a23af2 100644
--- a/tprint/tprint.nix
+++ b/tprint/tprint.nix
@@ -1,6 +1,6 @@
1{ mkDerivation, aeson-pretty, base, bytestring, containers 1{ mkDerivation, aeson, aeson-pretty, base, bytestring, containers
2, exceptions, optparse-applicative, pretty-show, stdenv, text 2, deepseq, exceptions, optparse-applicative, pretty-show, stdenv
3, thermoprint-bbcode, thermoprint-client, time 3, text, thermoprint-bbcode, thermoprint-client, time
4}: 4}:
5mkDerivation { 5mkDerivation {
6 pname = "tprint"; 6 pname = "tprint";
@@ -9,7 +9,7 @@ mkDerivation {
9 isLibrary = false; 9 isLibrary = false;
10 isExecutable = true; 10 isExecutable = true;
11 executableHaskellDepends = [ 11 executableHaskellDepends = [
12 aeson-pretty base bytestring containers exceptions 12 aeson aeson-pretty base bytestring containers deepseq exceptions
13 optparse-applicative pretty-show text thermoprint-bbcode 13 optparse-applicative pretty-show text thermoprint-bbcode
14 thermoprint-client time 14 thermoprint-client time
15 ]; 15 ];