s-cargot.cabal 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. name: s-cargot
  2. version: 0.1.0.0
  3. synopsis: A flexible, extensible s-expression library.
  4. homepage: https://github.com/aisamanra/s-cargot
  5. description: S-Cargot is a library for working with s-expressions in
  6. a modular and extensible way, opting for genericity and
  7. flexibility instead of speed. Instead of understanding
  8. one particular form of s-expression, the S-Cargot library
  9. exposes tools for parsing or emitting different kinds of
  10. s-expressions, including features not normally included
  11. in an s-expression library like reader macros or tight
  12. control over indentation in pretty-printing.
  13. license: BSD3
  14. license-file: LICENSE
  15. author: Getty Ritter
  16. maintainer: gettyritter@gmail.com
  17. copyright: 2015 Getty Ritter
  18. category: Data
  19. build-type: Simple
  20. cabal-version: >=1.10
  21. source-repository head
  22. type: git
  23. location: git://github.com/aisamanra/s-cargot.git
  24. library
  25. exposed-modules: Data.SCargot,
  26. Data.SCargot.Repr,
  27. Data.SCargot.Repr.Basic,
  28. Data.SCargot.Repr.Rich,
  29. Data.SCargot.Repr.WellFormed,
  30. Data.SCargot.Parse,
  31. Data.SCargot.Print,
  32. Data.SCargot.Comments,
  33. Data.SCargot.Common,
  34. Data.SCargot.Language.Basic,
  35. Data.SCargot.Language.HaskLike
  36. build-depends: base >=4.7 && <5,
  37. parsec,
  38. text,
  39. containers
  40. default-language: Haskell2010