aboutsummaryrefslogtreecommitdiff
path: root/bbcode/thermoprint-bbcode.nix
blob: 5521b104c09246cf2270bde55d44e0942b7b4764 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ mkDerivation, attoparsec, base, hspec, QuickCheck
, quickcheck-instances, stdenv, text
}:
mkDerivation {
  pname = "thermoprint-bbcode";
  version = "0.0.0";
  src = ./.;
  libraryHaskellDepends = [
    attoparsec base QuickCheck quickcheck-instances text
  ];
  testHaskellDepends = [ attoparsec base hspec QuickCheck text ];
  homepage = "http://dirty-haskell.org/tags/thermoprint.html";
  description = "A parser for a subset of bbcode compatible with thermoprint-spec";
  license = stdenv.lib.licenses.publicDomain;
}