1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
{ mkDerivation, aeson, aeson-pretty, base, bytestring, containers
, deepseq, editor-open, exceptions, optparse-applicative
, pretty-show, stdenv, text, thermoprint-bbcode, thermoprint-client
, time
}:
mkDerivation {
pname = "tprint";
version = "3.2.0";
src = ./.;
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
aeson aeson-pretty base bytestring containers deepseq editor-open
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;
}
|