forked from amtal/CoreErlang
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathCoreErlang.cabal
79 lines (74 loc) · 2.46 KB
/
CoreErlang.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
cabal-version: 1.12
-- This file has been generated from package.yaml by hpack version 0.31.2.
--
-- see: https://github.com/sol/hpack
--
-- hash: a0faa729ab4adcde1ae8edd4ad14800ff6b9c9f1404ea2b70e037628548d3dae
name: CoreErlang
version: 0.0.5
synopsis: Manipulating Core Erlang source code
description: Facilities for manipulating Core Erlang source code: an abstract syntax, parser and pretty-printer.
category: Language
homepage: https://github.com/hamler-lang/CoreErlang
bug-reports: https://github.com/hamler-lang/CoreErlang/issues
author: David Castro Pérez <[email protected]>, Henrique Ferreiro García <[email protected]>
maintainer: Alex Kropivny <[email protected]>, Feng Lee <[email protected]>
copyright: 2008, David Castro Pérez, Henrique Ferreiro García
license: BSD3
license-file: LICENSE
build-type: Simple
extra-source-files:
README.md
ChangeLog.md
source-repository head
type: git
location: https://github.com/hamler-lang/CoreErlang
library
exposed-modules:
Language.CoreErlang
other-modules:
Language.CoreErlang.Parser
Language.CoreErlang.Pretty
Language.CoreErlang.Syntax
Paths_CoreErlang
hs-source-dirs:
src
default-extensions: DeriveDataTypeable LambdaCase
ghc-options: -Wall -O2
build-depends:
base >=4.7 && <5
, directory >= 1.3.3.0
, parsec >=3.1 && <3.2
, pretty >=1.1 && <1.2
, tasty >= 1.2
, tasty-hspec >= 1.1.5.1
, megaparsec >= 8.0.0
, text >= 1.2.3.1
, prettyprinter >= 1.2.1
, filepath>=1.4.2.1
default-language: Haskell2010
test-suite test
type: exitcode-stdio-1.0
main-is: Spec.hs
other-modules:
TestParser
Paths_CoreErlang
hs-source-dirs:
test
default-extensions: DeriveDataTypeable LambdaCase
ghc-options: -threaded -rtsopts -with-rtsopts=-N
build-depends:
CoreErlang
, base >=4.7 && <5
, directory >= 1.3.3.0
, hspec
, parsec >=3.1 && <3.2
, pretty >=1.1 && <1.2
, tasty
, tasty >= 1.2
, tasty-hspec
, tasty-hspec >= 1.1.5.1
, megaparsec >= 8.0.0
, prettyprinter >= 1.2.1
, filepath >= 1.4.2.1
default-language: Haskell2010