aboutsummaryrefslogtreecommitdiff
path: root/tprint/tprint.nix
blob: e28204db789c18e841e13823e16e5ad1bee77da1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ mkDerivation, aeson-pretty, base, bytestring, containers
, 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 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;
}