packages feed

hs-tags-0.1.5.2: hs-tags.cabal

name:            hs-tags
version:         0.1.5.2
cabal-version:   >= 1.10
build-type:      Simple
license:         MIT
license-file:    LICENSE
copyright:       (c) 2005-2021 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.1

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.1.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.2

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