blob: 896bb04cd7d8ac867068af7daa065bf4838bec20 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
{ mkDerivation, attoparsec, base, case-insensitive, containers
, hspec, QuickCheck, quickcheck-instances, rosezipper, stdenv, text
}:
mkDerivation {
pname = "thermoprint-bbcode";
version = "0.0.0";
src = ./.;
libraryHaskellDepends = [
attoparsec base case-insensitive containers rosezipper text
];
testHaskellDepends = [
attoparsec base hspec QuickCheck quickcheck-instances 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;
}
|