This repository has been archived by the owner on Nov 12, 2017. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsexp.cabal
48 lines (42 loc) · 1.69 KB
/
sexp.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
46
47
48
Name: sexp
Version: 0.7
Cabal-Version: >= 1.8
License: GPL-3
License-File: LICENSE
Stability: experimental
Author: Alexandru Scvortov <[email protected]>
Maintainer: [email protected]
Homepage: https://github.com/scvalex/sexp
Category: Language, Parsing
Synopsis: S-Expression parsing/printing made fun and easy
Build-Type: Simple
Description:
See the @README.md@ file and the homepage for details.
Extra-Source-Files: Makefile
Data-Files: README.md, LICENSE
Source-repository head
Type: git
Location: https://github.com/scvalex/sexp.git
Library
Build-depends: base >= 4.4 && < 5, attoparsec, bytestring, containers,
dlist, ghc-prim, mtl, vector
Hs-Source-Dirs: src
Ghc-options: -Wall
Extensions: ScopedTypeVariables, OverloadedStrings
Exposed-modules: Data.Sexp, Language.Sexp, Language.Sexp.Parser,
Language.Sexp.Printer
Executable sexp
Build-depends: base >= 4.4 && < 5, bytestring, sexp, cmdargs
Ghc-options: -Wall
Extensions: ScopedTypeVariables, OverloadedStrings
Main-is: sexp-tool.hs
Test-suite conversions
Hs-Source-Dirs: test
Main-Is: Conversions.hs
Type: exitcode-stdio-1.0
Ghc-Options: -Wall
Extensions: ScopedTypeVariables, OverloadedStrings
Build-Depends: base >= 4.4 && <5, bytestring, containers, ghc-prim,
sexp,
test-framework, test-framework-hunit, HUnit,
test-framework-quickcheck2, QuickCheck