-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathuulib.cabal
45 lines (40 loc) · 1.78 KB
/
uulib.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
name: uulib
version: 0.9.25
license: BSD3
license-file: COPYRIGHT
maintainer: UU Computer Science
homepage: https://github.com/UU-ComputerScience/uulib
bug-reports: https://github.com/UU-ComputerScience/uulib/issues
description: Fast Parser Combinators and Pretty Printing Combinators
synopsis: Haskell Utrecht Tools Library
category: Parsing
stability: Stable
copyright: Universiteit Utrecht
cabal-version: >= 1.10
build-type: Simple
extra-source-files: README.md,
CHANGELOG,
examples/bibtex/Bibtex.hs,
examples/parser/Example.hs,
examples/parser/Makefile,
examples/parser/README,
examples/parser/Scanner.x
source-repository head
type: git
location: https://github.com/UU-ComputerScience/uulib.git
library
default-language: Haskell2010
build-depends: base>=4 && <5
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.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
default-extensions: RankNTypes FunctionalDependencies TypeSynonymInstances UndecidableInstances FlexibleInstances MultiParamTypeClasses FlexibleContexts CPP ExistentialQuantification
hs-source-dirs: src