-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathghc-tags.cabal
93 lines (83 loc) · 3.06 KB
/
ghc-tags.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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
cabal-version: 3.0
name: ghc-tags
version: 1.9
synopsis: Utility for generating ctags and etags with GHC API.
description: Utility for generating etags (Emacs) and ctags (Vim and other
editors) with GHC API for efficient project navigation.
license: MPL-2.0
license-file: LICENSE
author: Andrzej Rybczak
maintainer: [email protected]
copyright: Andrzej Rybczak
category: Development
extra-source-files: CHANGELOG.md
README.md
homepage: https://github.com/arybczak/ghc-tags
bug-reports: https://github.com/arybczak/ghc-tags/issues
tested-with: GHC == { 9.6.5, 9.8.2, 9.10.1 }
source-repository head
type: git
location: https://github.com/arybczak/ghc-tags
flag ghc-lib
default: False
manual: True
description: Use ghc-lib even when compiling with compatible GHC version.
executable ghc-tags
ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-A4m
if !flag(ghc-lib) && impl(ghc == 9.10.*)
build-depends: ghc, ghc-boot
else
build-depends: ghc-lib == 9.10.*
build-depends: base >=4.18 && <4.21
, aeson >= 2.0.0.0
, async >= 2.2.5
, attoparsec
, bytestring
, containers
, deepseq
, directory
, filepath
, ghc-paths
, stm
, optparse-applicative
, process
, temporary
, text
, time
, vector
, yaml
hs-source-dirs: src
main-is: Main.hs
other-modules: GhcTags
GhcTags.Config.Args
GhcTags.Config.Project
GhcTags.Ghc
GhcTags.GhcCompat
GhcTags.Tag
GhcTags.CTag
GhcTags.CTag.Header
GhcTags.CTag.Parser
GhcTags.CTag.Formatter
GhcTags.CTag.Utils
GhcTags.ETag
GhcTags.ETag.Parser
GhcTags.ETag.Formatter
GhcTags.Utils
Paths_ghc_tags
autogen-modules: Paths_ghc_tags
default-language: Haskell2010
default-extensions: BangPatterns
, DataKinds
, FlexibleContexts
, FlexibleInstances
, GADTs
, KindSignatures
, LambdaCase
, MultiWayIf
, NamedFieldPuns
, OverloadedStrings
, RecordWildCards
, ScopedTypeVariables
, StrictData
, StandaloneDeriving
, TupleSections