]> Git — Sourcephile - haskell/localization.git/blob - localization.cabal
Add Localization to support messages as a type class.
[haskell/localization.git] / localization.cabal
1 name: localization
2 -- PVP: +-+------- breaking API changes
3 -- | | +----- non-breaking API additions
4 -- | | | +--- code changes with no API change
5 version: 1.0.0.20180213
6 category: Data Structures
7 synopsis: Library for localization (l10n)
8 description: Use advanced type-level code to check existence of localizations
9 (usually a textual rendition into some human languages).
10 extra-doc-files:
11 license: GPL-3
12 license-file: COPYING
13 stability: experimental
14 author: Julien Moutinho <julm+localization@autogeree.net>
15 maintainer: Julien Moutinho <julm+localization@autogeree.net>
16 bug-reports: Julien Moutinho <julm+localization@autogeree.net>
17 -- homepage:
18
19 build-type: Simple
20 cabal-version: >= 1.18
21 tested-with: GHC==8.2.2
22 extra-source-files:
23 stack.yaml
24 extra-tmp-files:
25
26 Source-Repository head
27 location: git://git.autogeree.net/localization
28 type: git
29
30 Library
31 exposed-modules:
32 Data.Locale
33 default-language: Haskell2010
34 default-extensions:
35 ghc-options:
36 -Wall
37 -Wincomplete-uni-patterns
38 -Wincomplete-record-updates
39 -fno-warn-tabs
40 -- -fhide-source-paths
41 build-depends:
42 base >= 4.10 && < 5
43 , containers >= 0.5
44 , text >= 1.2
45 , transformers >= 0.5