aboutsummaryrefslogtreecommitdiff
path: root/tp-bbcode/thermoprint-bbcode.nix
blob: deab20e6212c5fb0ee77adabfdb67bce56731339 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ mkDerivation, aeson, base, bbcode, bytestring, case-insensitive
, containers, hspec, QuickCheck, quickcheck-instances, stdenv, text
, thermoprint-spec
}:
mkDerivation {
  pname = "thermoprint-bbcode";
  version = "3.0.0";
  src = ./.;
  libraryHaskellDepends = [
    base bbcode bytestring 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;
}