diff options
author | CoprDistGit <infra@openeuler.org> | 2023-10-29 01:43:51 +0000 |
---|---|---|
committer | CoprDistGit <infra@openeuler.org> | 2023-10-29 01:43:51 +0000 |
commit | 73398c504de4e0cbbd475e2ba02b72197c3d7e28 (patch) | |
tree | db405b3e7ebcaa0ea4494114ead2c1ae392d10d0 /xml.cabal | |
parent | 055eac123cb40472ee06576e9214ee8d0c006346 (diff) |
automatic import of ghc-xmlopeneuler23.09
Diffstat (limited to 'xml.cabal')
-rwxr-xr-x | xml.cabal | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/xml.cabal b/xml.cabal new file mode 100755 index 0000000..aad11f7 --- /dev/null +++ b/xml.cabal @@ -0,0 +1,32 @@ +Name: xml
+Version: 1.3.14
+x-revision: 2
+Homepage: https://github.com/GaloisInc/xml
+Synopsis: A simple XML library.
+Description: A simple XML library.
+Category: Text, XML
+License: BSD3
+License-File: LICENSE
+Author: Galois Inc.
+Maintainer: diatchki@galois.com
+Copyright: (c) 2007-2008 Galois Inc.
+Build-type: Simple
+Cabal-version: >= 1.6
+
+
+library
+ Build-depends: base >= 3 && < 5, bytestring, text
+ Ghc-options: -Wall -O2
+ Exposed-modules: Text.XML.Light,
+ Text.XML.Light.Types,
+ Text.XML.Light.Output,
+ Text.XML.Light.Input,
+ Text.XML.Light.Lexer,
+ Text.XML.Light.Proc
+ Text.XML.Light.Cursor
+ Extensions: FlexibleInstances
+
+source-repository head
+ type: git
+ location: git://github.com/GaloisInc/xml.git
+
|