File: uulib.cabal

package info (click to toggle)
haskell-uulib 0.9.10-3
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 580 kB
  • sloc: haskell: 6,595; makefile: 8
file content (45 lines) | stat: -rw-r--r-- 1,988 bytes parent folder | download
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
cabal-version: >=1.1
build-type: Simple
name: uulib
version: 0.9.10
license: LGPL
license-file: COPYRIGHT
maintainer: Arie Middelkoop <ariem@cs.uu.nl>
homepage: http://www.cs.uu.nl/wiki/HUT/WebHome
description: Fast Parser Combinators and Pretty Printing Combinators
synopsis: Haskell Utrecht Tools Library
category: Parsing
stability: Stable
copyright: Universiteit Utrecht
extra-source-files: README, LICENSE-LGPL,
                    examples/bibtex/Bibtex.hs,
                    examples/parser/Example.hs,
                    examples/parser/Makefile,
                    examples/parser/README,
                    examples/parser/Scanner.x
flag have_ghc_prim
  description: ghc-prim as separate module
library
  if flag(have_ghc_prim)
    build-depends: base>=4, ghc-prim
  else
    build-depends: base<4
  build-depends: haskell98
  exposed-modules: UU.Parsing.CharParser UU.Parsing.Derived
                   UU.Parsing.Interface UU.Parsing.MachineInterface
                   UU.Parsing.Merge UU.Parsing.Offside UU.Parsing.Perms
                   UU.Parsing.StateParser UU.Parsing UU.DData.IntBag 
                   UU.DData.Map UU.DData.MultiSet UU.DData.Queue
                   UU.DData.Scc UU.DData.Seq UU.DData.Set UU.PPrint
                   UU.Pretty.Ext UU.Pretty UU.Scanner.GenToken UU.Scanner.GenTokenOrd
                   UU.Scanner.GenTokenParser UU.Scanner.GenTokenSymbol
                   UU.Scanner.Position UU.Scanner.Scanner
                   UU.Scanner.Token UU.Scanner.TokenParser UU.Scanner.TokenShow
                   UU.Scanner UU.Util.BinaryTrees UU.Util.PermTree UU.Util.Utils
                   UU.Pretty.Basic UU.Parsing.Machine    
                   UU.DData.IntMap  
                   UU.DData.IntSet        
  extensions:  RankNTypes FunctionalDependencies TypeSynonymInstances UndecidableInstances FlexibleInstances MultiParamTypeClasses FlexibleContexts CPP ExistentialQuantification
  ghc-options: -fglasgow-exts
  hs-source-dirs: src