aboutsummaryrefslogtreecommitdiff
path: root/servant/servant.nix
blob: 6c90a4f0581046ef1437e7a26e8fd25f08738eb7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ mkDerivation
, stdenv
, base
, thermoprint
}:

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