aboutsummaryrefslogtreecommitdiff
path: root/tp-bbcode/thermoprint-bbcode.nix
blob: 7cec71988a94d6c308213b577fdb6549d1d23897 (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 = "1.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;
}