aboutsummaryrefslogtreecommitdiff
path: root/tp-bbcode/thermoprint-bbcode.nix
blob: d0b3d2cc1546c49bf774bb7e09007cd80f837d80 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ mkDerivation, aeson, base, bbcode, case-insensitive, containers
, hspec, QuickCheck, quickcheck-instances, stdenv, text
, thermoprint-spec
}:
mkDerivation {
  pname = "thermoprint-bbcode";
  version = "1.0.0";
  src = ./.;
  libraryHaskellDepends = [
    base bbcode case-insensitive containers text thermoprint-spec
  ];
  testHaskellDepends = [
    aeson base containers hspec QuickCheck quickcheck-instances text
    thermoprint-spec
  ];
  homepage = "http://dirty-haskell.org/tags/thermoprint.html";
  description = "Parse bbcode for use in thermoprint";
  license = stdenv.lib.licenses.publicDomain;
}