aboutsummaryrefslogtreecommitdiff
path: root/servant/servant.nix
blob: a84fc778f573b2213beffddb2a2a42c0b57aa90a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ mkDerivation
, stdenv
, base
, thermoprint
, aeson, wai, servant-server, warp, optparse-applicative
}:

mkDerivation {
  pname = "thermoprint-servant";
  version = "0.0.0";
  src = ./.; 
  isLibrary = true;
  isExecutable = true;
  executableHaskellDepends = [
    base thermoprint aeson wai servant-server warp optparse-applicative
  ];
  homepage = "git://git.yggdrasil.li/thermoprint";
  description = "Server for interfacing to cheap thermoprinters";
  license = stdenv.lib.licenses.publicDomain;
}