gdritter repos xleb / aa09d76
Clean up cabal file and add useful metadata Getty Ritter 6 years ago
1 changed file(s) with 16 addition(s) and 10 deletion(s). Collapse all Expand all
11 name: xleb
2 version: 0.1.0.0
2 version: 0.1.0
33 synopsis: A simple monadic language for parsing XML structures.
4 homepage: https://github.com/aisamanra/xleb
45 description:
56 A simple monadic language for parsing XML structures.
67 license: BSD3
78 license-file: LICENSE
8 author: Getty Ritter <gdritter@galois.com>
9 maintainer: Getty Ritter <gdritter@galois.com>
9 author: Getty Ritter <xleb@infinitenegativeutility.com>
10 maintainer: Getty Ritter <xleb@infinitenegativeutility.com>
1011 copyright: ©2017 Getty Ritter
1112 category: XML
1213 build-type: Simple
1314 cabal-version: >= 1.14
15 bug-reports: https://github.com/aisamanra/xleb/issues
16
17 source-repository head
18 type: git
19 location: git://github.com/aisamanra/s-cargot.git
1420
1521 flag build-examples
1622 description: Build example applications
2026 exposed-modules: Text.XML.Xleb
2127 hs-source-dirs: src
2228 ghc-options: -Wall -Werror
23 build-depends: base >=4.7 && <5
24 , xml
25 , containers
26 , mtl
29 build-depends: base >= 4.7 && <5
30 , xml >= 1.3 && <1.4
31 , containers >= 0.5.10 && <0.6
32 , mtl >= 2.2 && <2.3
2733 default-language: Haskell2010
2834
2935 executable atom
3238 hs-source-dirs: examples/atom
3339 main-is: Main.hs
3440 ghc-options: -Wall -Werror
35 build-depends: base >=4.7 && <5
41 build-depends: base >=4.7 && <5
3642 , xleb
37 , xml
38 , pretty-show
43 , xml >= 1.3 && <1.4
44 , pretty-show >= 1.6 && <1.7
3945 default-language: Haskell2010