aboutsummaryrefslogtreecommitdiff
path: root/tprint/tprint.nix
diff options
context:
space:
mode:
Diffstat (limited to 'tprint/tprint.nix')
-rw-r--r--tprint/tprint.nix16
1 files changed, 16 insertions, 0 deletions
diff --git a/tprint/tprint.nix b/tprint/tprint.nix
new file mode 100644
index 0000000..413774a
--- /dev/null
+++ b/tprint/tprint.nix
@@ -0,0 +1,16 @@
1{ mkDerivation, base, optparse-applicative, stdenv
2, thermoprint-bbcode, thermoprint-client
3}:
4mkDerivation {
5 pname = "tprint";
6 version = "1.0.0";
7 src = ./.;
8 isLibrary = false;
9 isExecutable = true;
10 executableHaskellDepends = [
11 base optparse-applicative thermoprint-bbcode thermoprint-client
12 ];
13 homepage = "http://dirty-haskell.org/tags/thermoprint.html";
14 description = "A CLI for thermoprint-client";
15 license = stdenv.lib.licenses.publicDomain;
16}