aboutsummaryrefslogtreecommitdiff
path: root/webgui/thermoprint-webgui.nix
blob: d4cafe8394c84a90ad250efdcf4a6d8bb2b661a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ mkDerivation, base, bytestring, containers, data-default-class
, either, exceptions, network, network-uri, optparse-applicative
, stdenv, text, thermoprint-bbcode, thermoprint-client
, threepenny-gui, time, websockets
}:
mkDerivation {
  pname = "thermoprint-webgui";
  version = "1.0.2";
  src = ./.;
  isLibrary = false;
  isExecutable = true;
  executableHaskellDepends = [
    base bytestring containers data-default-class either exceptions
    network network-uri optparse-applicative text thermoprint-bbcode
    thermoprint-client threepenny-gui time websockets
  ];
  homepage = "http://dirty-haskell.org/tags/thermoprint.html";
  description = "Threepenny interface for thermoprint-spec compliant servers";
  license = stdenv.lib.licenses.publicDomain;
}