aboutsummaryrefslogtreecommitdiff
path: root/webgui/thermoprint-webgui.nix
diff options
context:
space:
mode:
authorGregor Kleen <gkleen@yggdrasil.li>2016-02-22 00:49:16 +0000
committerGregor Kleen <gkleen@yggdrasil.li>2016-02-22 00:49:16 +0000
commit7ca94fb84f967fcfc741b7aa3662356e4fc0241f (patch)
treeca2c417b1dac7a8e6b19af73c47223008c48685e /webgui/thermoprint-webgui.nix
parent9e45c04c45aef1fa71815c61512c354d0d5ee3e3 (diff)
downloadthermoprint-7ca94fb84f967fcfc741b7aa3662356e4fc0241f.tar
thermoprint-7ca94fb84f967fcfc741b7aa3662356e4fc0241f.tar.gz
thermoprint-7ca94fb84f967fcfc741b7aa3662356e4fc0241f.tar.bz2
thermoprint-7ca94fb84f967fcfc741b7aa3662356e4fc0241f.tar.xz
thermoprint-7ca94fb84f967fcfc741b7aa3662356e4fc0241f.zip
First stab at threepenny gui
Diffstat (limited to 'webgui/thermoprint-webgui.nix')
-rw-r--r--webgui/thermoprint-webgui.nix17
1 files changed, 17 insertions, 0 deletions
diff --git a/webgui/thermoprint-webgui.nix b/webgui/thermoprint-webgui.nix
new file mode 100644
index 0000000..0450eae
--- /dev/null
+++ b/webgui/thermoprint-webgui.nix
@@ -0,0 +1,17 @@
1{ mkDerivation, base, bytestring, optparse-applicative, stdenv
2, thermoprint-bbcode, thermoprint-client, threepenny-gui
3}:
4mkDerivation {
5 pname = "thermoprint-webgui";
6 version = "0.0.0";
7 src = ./.;
8 isLibrary = false;
9 isExecutable = true;
10 executableHaskellDepends = [
11 base bytestring optparse-applicative thermoprint-bbcode
12 thermoprint-client threepenny-gui
13 ];
14 homepage = "http://dirty-haskell.org/tags/thermoprint.html";
15 description = "Threepenny interface for thermoprint-spec compliant servers";
16 license = stdenv.lib.licenses.publicDomain;
17}