-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathhaskell-src.cabal
More file actions
66 lines (57 loc) · 1.75 KB
/
haskell-src.cabal
File metadata and controls
66 lines (57 loc) · 1.75 KB
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
cabal-version: 1.18
name: haskell-src
-- don't forget to update the changelog.md!
version: 1.0.4.2
build-type: Simple
license: BSD3
license-file: LICENSE
author: Simon Marlow, Sven Panne and Noel Winstanley
maintainer: Andreas Abel
bug-reports: https://github.com/haskell-pkg-janitors/haskell-src/issues
stability: stable
category: Language
synopsis: Support for manipulating Haskell source code
description:
The @haskell-src@ package provides support for manipulating Haskell
source code. The package provides a lexer, parser and
pretty-printer, and a definition of a Haskell abstract syntax tree
(AST). Common uses of this package are to parse or generate
<http://www.haskell.org/onlinereport/ Haskell 98> code.
tested-with:
GHC == 9.14.1
GHC == 9.12.2
GHC == 9.10.2
GHC == 9.8.4
GHC == 9.6.7
GHC == 9.4.8
GHC == 9.2.8
GHC == 9.0.2
GHC == 8.10.7
GHC == 8.8.4
GHC == 8.6.5
GHC == 8.4.4
GHC == 8.2.2
GHC == 8.0.2
extra-doc-files: changelog.md
source-repository head
type: git
location: https://github.com/haskell-pkg-janitors/haskell-src.git
library
exposed-modules:
Language.Haskell.Lexer,
Language.Haskell.Parser,
Language.Haskell.ParseMonad,
Language.Haskell.Pretty,
Language.Haskell.Syntax,
Language.Haskell.ParseUtils
build-depends: base >= 4.9 && < 5
-- no confirmed upper bound on base yet
, syb >= 0.1 && < 0.8
, pretty >= 1.0.1.2 && < 1.2
, array >= 0.3 && < 0.6
build-tools: happy >= 1.19
default-language: Haskell98
ghc-options:
-Wall
-Wcompat
-Wnoncanonical-monad-instances