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