aboutsummaryrefslogtreecommitdiff
path: root/server/thermoprint-server.nix
blob: 7154dc329f4021b4dd8da10c7dab06d43499aad4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ mkDerivation, base, data-default-class, dyre, servant-server
, stdenv, thermoprint-spec, wai, warp
}:
mkDerivation {
  pname = "thermoprint-server";
  version = "0.0.0";
  src = ./.;
  isLibrary = false;
  isExecutable = true;
  executableHaskellDepends = [
    base data-default-class dyre servant-server thermoprint-spec wai
    warp
  ];
  homepage = "http://dirty-haskell.org/tags/thermoprint.html";
  description = "Server for thermoprint-spec";
  license = stdenv.lib.licenses.publicDomain;
}