-
Notifications
You must be signed in to change notification settings - Fork 1
/
hs-tags.cabal
67 lines (59 loc) · 1.84 KB
/
hs-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
name: hs-tags
version: 0.1.5.3
cabal-version: >= 1.10
build-type: Simple
license: MIT
license-file: LICENSE
copyright: (c) 2005-2022 The Agda Team.
author: Ulf Norell, Nils Anders Danielsson, Andrés Sicard-Ramírez, Andreas Abel, Francesco Mazzoli, Paolo G. Giarrusso
maintainer: Andreas Abel <andreas.abel@gu.se>
bug-reports: https://github.com/agda/hs-tags/issues
category: Development
synopsis: Create tag files (ctags and etags) for Haskell code.
description: .
Executable to generate a tags (ctags) or TAGS (etags) file
for a bunch of Haskell files, using GHC as parser.
These tag files are used by editors (e.g. TAGS by Emacs) to
implement jump-to-definition (e.g. M-. in Emacs).
tested-with:
GHC == 8.0.2
GHC == 8.2.2
GHC == 8.4.4
GHC == 8.6.5
GHC == 8.8.4
GHC == 8.10.7
GHC == 9.0.2
extra-source-files:
CHANGELOG.md
README.md
stack-8.0.2.yaml
stack-8.2.2.yaml
stack-8.4.4.yaml
stack-8.6.5.yaml
stack-8.8.4.yaml
stack-8.10.7.yaml
stack-9.0.2.yaml
source-repository head
type: git
location: https://github.com/agda/hs-tags.git
source-repository this
type: git
location: https://github.com/agda/hs-tags.git
tag: v0.1.5.3
executable hs-tags
main-is: Main.hs
other-modules: Tags
Paths_hs_tags
default-language: Haskell2010
build-depends:
base >= 4.9.0.0 && < 4.16
, Cabal >= 1.24.0.0 && < 3.7
, containers >= 0.5.7.1 && < 0.7
, directory >= 1.2.6.2 && < 1.4
, filepath >= 1.4.1.0 && < 1.5
, ghc >= 8.0.2 && < 9.1
, ghc-paths >= 0.1.0.12 && < 0.2
, mtl >= 2.2.1 && < 2.3
, process >= 1.4.2.0 && < 1.7
, strict >= 0.3.2 && < 0.5
ghc-options: -fwarn-incomplete-patterns