aboutsummaryrefslogtreecommitdiff
path: root/tprint/tprint.nix
blob: 9954b0236e32822ba3aa7e6b254c8e91a1f41f17 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ mkDerivation, base, containers, optparse-applicative, pretty-show
, stdenv, thermoprint-bbcode, thermoprint-client, time
}:
mkDerivation {
  pname = "tprint";
  version = "1.0.0";
  src = ./.;
  isLibrary = false;
  isExecutable = true;
  executableHaskellDepends = [
    base containers optparse-applicative pretty-show thermoprint-bbcode
    thermoprint-client time
  ];
  homepage = "http://dirty-haskell.org/tags/thermoprint.html";
  description = "A CLI for thermoprint-client";
  license = stdenv.lib.licenses.publicDomain;
}