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