aboutsummaryrefslogtreecommitdiff
path: root/webgui/thermoprint-webgui.nix
blob: 0450eae89b7e4e1400e916ea44dbc02bd31b38b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ mkDerivation, base, bytestring, optparse-applicative, stdenv
, thermoprint-bbcode, thermoprint-client, threepenny-gui
}:
mkDerivation {
  pname = "thermoprint-webgui";
  version = "0.0.0";
  src = ./.;
  isLibrary = false;
  isExecutable = true;
  executableHaskellDepends = [
    base bytestring optparse-applicative thermoprint-bbcode
    thermoprint-client threepenny-gui
  ];
  homepage = "http://dirty-haskell.org/tags/thermoprint.html";
  description = "Threepenny interface for thermoprint-spec compliant servers";
  license = stdenv.lib.licenses.publicDomain;
}