File: ucd2haskell.cabal

package info (click to toggle)
haskell-unicode-transforms 0.3.6-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 3,672 kB
  • sloc: haskell: 10,801; makefile: 7
file content (48 lines) | stat: -rw-r--r-- 1,509 bytes parent folder | download | duplicates (2)
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
-- This is a separate cabal file to break cyclic dependency within the same
-- cabal file. unicode-tranforms files are generated by this utility but this
-- also uses a component (for Hangul constants) from unicode-tranforms.

name:                ucd2haskell
version:             0.1.0.0
synopsis:            Generate Haskell files for unicode properties
description:         -
homepage:            http://github.com/harendra-kumar/unicode-transforms
bug-reports:         https://github.com/harendra-kumar/unicode-transforms/issues
license:             BSD3
author:              Harendra Kumar, Antonio Nikishaev
maintainer:          harendra.kumar@gmail.com
copyright:           2014-15 Antonio Nikishaev, 2016 Harendra Kumar
category:            Data,Text,Unicode
stability:           Experimental
build-type:          Simple
cabal-version:       >= 1.10

extra-source-files:
    stack.yaml

source-repository head
  type: git
  location: https://github.com/harendra-kumar/unicode-transforms

executable ucd2haskell
  default-language: Haskell2010
  ghc-options: -Wall
               -fwarn-identities
               -fwarn-incomplete-record-updates
               -fwarn-incomplete-uni-patterns
               -fwarn-tabs
  hs-source-dirs:
      ., ..
  main-is: UCD2Haskell.hs
  other-modules:
      Data.Unicode.Properties.DecomposeHangul
  build-depends:
      base >= 4 && < 5
    , getopt-generics
    , tagsoup
    , split
    , binary
    , bytestring
    , containers
    , deepseq
    , filepath