aboutsummaryrefslogtreecommitdiff
path: root/tprint/tprint.nix
blob: 492a6434721ac9db2e3d14fb1ede6d60c1563a89 (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-servant, thermoprint, bbcode
, optparse-applicative, servant-client, servant
}:
mkDerivation {
  pname = "tprint";
  version = "0.0.0";
  src = ./.;
  isLibrary = false;
  isExecutable = true;
  executableHaskellDepends = [ base
                               thermoprint thermoprint-servant bbcode
                               optparse-applicative servant-client servant
                             ];
  homepage = "git://git.yggdrasil.li/thermoprint";
  description = "A cli-tool for interfacing with thermoprint-servant";
  license = stdenv.lib.licenses.publicDomain;
}