aboutsummaryrefslogtreecommitdiff
path: root/bbcode/bbcode.nix
blob: d363a174f8c99650a4fe7eb6ccd9ec05bfad54b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ mkDerivation
, stdenv
, base
, thermoprint
, attoparsec, parsec, mtl, case-insensitive, containers
}:
mkDerivation {
  pname = "bbcode";
  version = "0.0.0";
  src = ./.;
  libraryHaskellDepends = [ base
                            thermoprint
                            attoparsec parsec mtl case-insensitive containers
                          ];
  homepage = "git://git.yggdrasil.li/thermoprint";
  description = "A tiny parser for bbcode->thermoprint-syntax-tree conversion";
  license = stdenv.lib.licenses.publicDomain;
}