aboutsummaryrefslogtreecommitdiff
path: root/webgui/thermoprint-webgui.nix
diff options
context:
space:
mode:
authorGregor Kleen <gkleen@yggdrasil.li>2016-02-22 23:30:28 +0000
committerGregor Kleen <gkleen@yggdrasil.li>2016-02-22 23:30:28 +0000
commit2c55c6f2afabde93a3579d1042f189f34e821753 (patch)
tree211787e131063a3859955c5c40cb96bc634646e9 /webgui/thermoprint-webgui.nix
parent760027dbcd7185be038299efb18e0cc37c8088c4 (diff)
downloadthermoprint-2c55c6f2afabde93a3579d1042f189f34e821753.tar
thermoprint-2c55c6f2afabde93a3579d1042f189f34e821753.tar.gz
thermoprint-2c55c6f2afabde93a3579d1042f189f34e821753.tar.bz2
thermoprint-2c55c6f2afabde93a3579d1042f189f34e821753.tar.xz
thermoprint-2c55c6f2afabde93a3579d1042f189f34e821753.zip
First work on integrating websockets into webgui
Diffstat (limited to 'webgui/thermoprint-webgui.nix')
-rw-r--r--webgui/thermoprint-webgui.nix10
1 files changed, 6 insertions, 4 deletions
diff --git a/webgui/thermoprint-webgui.nix b/webgui/thermoprint-webgui.nix
index 0450eae..5eb5912 100644
--- a/webgui/thermoprint-webgui.nix
+++ b/webgui/thermoprint-webgui.nix
@@ -1,5 +1,6 @@
1{ mkDerivation, base, bytestring, optparse-applicative, stdenv 1{ mkDerivation, base, bytestring, exceptions, network, network-uri
2, thermoprint-bbcode, thermoprint-client, threepenny-gui 2, optparse-applicative, stdenv, text, thermoprint-bbcode
3, thermoprint-client, threepenny-gui, websockets
3}: 4}:
4mkDerivation { 5mkDerivation {
5 pname = "thermoprint-webgui"; 6 pname = "thermoprint-webgui";
@@ -8,8 +9,9 @@ mkDerivation {
8 isLibrary = false; 9 isLibrary = false;
9 isExecutable = true; 10 isExecutable = true;
10 executableHaskellDepends = [ 11 executableHaskellDepends = [
11 base bytestring optparse-applicative thermoprint-bbcode 12 base bytestring exceptions network network-uri optparse-applicative
12 thermoprint-client threepenny-gui 13 text thermoprint-bbcode thermoprint-client threepenny-gui
14 websockets
13 ]; 15 ];
14 homepage = "http://dirty-haskell.org/tags/thermoprint.html"; 16 homepage = "http://dirty-haskell.org/tags/thermoprint.html";
15 description = "Threepenny interface for thermoprint-spec compliant servers"; 17 description = "Threepenny interface for thermoprint-spec compliant servers";