-
Notifications
You must be signed in to change notification settings - Fork 0
/
purebred-icu.cabal
49 lines (45 loc) · 1.33 KB
/
purebred-icu.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
cabal-version: 2.4
name: purebred-icu
version: 0.1.0.0
synopsis: ICU charset support for purebred
description:
.
This library can be used to add support for many more charsets
to the purebred MUA. It uses the /text-icu/ library (and /libicu/
under the hood) to convert text.
.
To use:
.
@
import qualified Purebred.Plugin.ICU
main = purebred
[ Purebred.Plugin.ICU.plugin
-- , other plugins
]
@
homepage: https://github.com/purebred-mua/purebred-icu
license: AGPL-3.0-or-later
license-file: LICENSE
author: Fraser Tweedale
maintainer: frase@frase.id.au
copyright: 2019 Fraser Tweedale
category: Email
build-type: Simple
tested-with:
GHC==8.4.4, GHC==8.6.3
source-repository head
type: git
location: https://github.com/purebred-mua/purebred-icu.git
library
hs-source-dirs: src
ghc-options: -Wall
default-language: Haskell2010
exposed-modules: Purebred.Plugin.ICU
other-modules: Paths_purebred_icu
autogen-modules: Paths_purebred_icu
build-depends: base >= 4.9 && < 5
, purebred
, purebred-email >= 0.2
, case-insensitive
, text
, text-icu