aboutsummaryrefslogtreecommitdiff
path: root/tprint/tprint.nix
diff options
context:
space:
mode:
Diffstat (limited to 'tprint/tprint.nix')
-rw-r--r--tprint/tprint.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/tprint/tprint.nix b/tprint/tprint.nix
index e28204d..ace6210 100644
--- a/tprint/tprint.nix
+++ b/tprint/tprint.nix
@@ -1,5 +1,5 @@
1{ mkDerivation, aeson-pretty, base, bytestring, containers 1{ mkDerivation, aeson-pretty, base, bytestring, containers
2, optparse-applicative, pretty-show, stdenv, text 2, exceptions, optparse-applicative, pretty-show, stdenv, text
3, thermoprint-bbcode, thermoprint-client, time 3, thermoprint-bbcode, thermoprint-client, time
4}: 4}:
5mkDerivation { 5mkDerivation {
@@ -9,8 +9,9 @@ mkDerivation {
9 isLibrary = false; 9 isLibrary = false;
10 isExecutable = true; 10 isExecutable = true;
11 executableHaskellDepends = [ 11 executableHaskellDepends = [
12 aeson-pretty base bytestring containers optparse-applicative 12 aeson-pretty base bytestring containers exceptions
13 pretty-show text thermoprint-bbcode thermoprint-client time 13 optparse-applicative pretty-show text thermoprint-bbcode
14 thermoprint-client time
14 ]; 15 ];
15 homepage = "http://dirty-haskell.org/tags/thermoprint.html"; 16 homepage = "http://dirty-haskell.org/tags/thermoprint.html";
16 description = "A CLI for thermoprint-client"; 17 description = "A CLI for thermoprint-client";