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