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 413774a..9954b02 100644
--- a/tprint/tprint.nix
+++ b/tprint/tprint.nix
@@ -1,5 +1,5 @@
1{ mkDerivation, base, optparse-applicative, stdenv 1{ mkDerivation, base, containers, optparse-applicative, pretty-show
2, thermoprint-bbcode, thermoprint-client 2, stdenv, thermoprint-bbcode, thermoprint-client, time
3}: 3}:
4mkDerivation { 4mkDerivation {
5 pname = "tprint"; 5 pname = "tprint";
@@ -8,7 +8,8 @@ mkDerivation {
8 isLibrary = false; 8 isLibrary = false;
9 isExecutable = true; 9 isExecutable = true;
10 executableHaskellDepends = [ 10 executableHaskellDepends = [
11 base optparse-applicative thermoprint-bbcode thermoprint-client 11 base containers optparse-applicative pretty-show thermoprint-bbcode
12 thermoprint-client time
12 ]; 13 ];
13 homepage = "http://dirty-haskell.org/tags/thermoprint.html"; 14 homepage = "http://dirty-haskell.org/tags/thermoprint.html";
14 description = "A CLI for thermoprint-client"; 15 description = "A CLI for thermoprint-client";