Clean up cabal file and add useful metadata
Getty Ritter
7 years ago
1 | 1 | name: xleb |
2 |
version: 0.1.0 |
|
2 | version: 0.1.0 | |
3 | 3 | synopsis: A simple monadic language for parsing XML structures. |
4 | homepage: https://github.com/aisamanra/xleb | |
4 | 5 | description: |
5 | 6 | A simple monadic language for parsing XML structures. |
6 | 7 | license: BSD3 |
7 | 8 | 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> | |
10 | 11 | copyright: ©2017 Getty Ritter |
11 | 12 | category: XML |
12 | 13 | build-type: Simple |
13 | 14 | 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 | |
14 | 20 | |
15 | 21 | flag build-examples |
16 | 22 | description: Build example applications |
20 | 26 | exposed-modules: Text.XML.Xleb |
21 | 27 | hs-source-dirs: src |
22 | 28 | 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 | |
27 | 33 | default-language: Haskell2010 |
28 | 34 | |
29 | 35 | executable atom |
32 | 38 | hs-source-dirs: examples/atom |
33 | 39 | main-is: Main.hs |
34 | 40 | ghc-options: -Wall -Werror |
35 |
build-depends: base |
|
41 | build-depends: base >=4.7 && <5 | |
36 | 42 | , xleb |
37 | , xml | |
38 | , pretty-show | |
43 | , xml >= 1.3 && <1.4 | |
44 | , pretty-show >= 1.6 && <1.7 | |
39 | 45 | default-language: Haskell2010 |