aboutsummaryrefslogtreecommitdiff
path: root/tprint/tprint.nix
diff options
context:
space:
mode:
authorGregor Kleen <gkleen@yggdrasil.li>2016-03-01 00:11:17 +0100
committerGregor Kleen <gkleen@yggdrasil.li>2016-03-01 00:11:17 +0100
commit05ed3a2612d5b1c62bb6b3d9eeb1da576eda6f45 (patch)
tree153983a11e4baeda2703be3716e975b2790e3225 /tprint/tprint.nix
parent36434c74792c50be759172d158be0e9e56e28849 (diff)
downloadthermoprint-05ed3a2612d5b1c62bb6b3d9eeb1da576eda6f45.tar
thermoprint-05ed3a2612d5b1c62bb6b3d9eeb1da576eda6f45.tar.gz
thermoprint-05ed3a2612d5b1c62bb6b3d9eeb1da576eda6f45.tar.bz2
thermoprint-05ed3a2612d5b1c62bb6b3d9eeb1da576eda6f45.tar.xz
thermoprint-05ed3a2612d5b1c62bb6b3d9eeb1da576eda6f45.zip
Build framework for tprint
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}