Name:                alex-meta
Version:             0.3.0.9
Synopsis:            Quasi-quoter for Alex lexers
-- Description:         
License:             BSD3
License-file:        LICENSE
Author:              Jonas Duregard
Maintainer:          jonas.duregard@gmail.com
Category:            Development
Build-type:          Custom
Description:         A Template-Haskell based version of the Alex lexer generator. It is used by BNFC-meta to generate lexers and currently this is the only feature known to be working.
Cabal-version:       >=1.8


Library
  hs-source-dirs: src .

  extensions: CPP

  Exposed-modules:     
    Text.Alex.Quote
    Text.Alex.AlexTemplate
  
  -- Packages needed in order to build this package.
  Build-depends:
      template-haskell >=2.5&&<2.12
    , haskell-src-meta >=0.5.1.2&&<1.0
    , base >= 4.2 && < 5
    , array, containers
    , QuickCheck >=2

  Build-tools: alex, happy
  
  other-modules:
        Text.Alex
--        Text.Alex.Verbatim
        AbsSyn
        CharSet
        DFA
        DFS
        Info
        Map
        NFA
        Output
        Parser
        ParseMonad
        Scan
        Set
        Sort
        Util
        UTF8
        DFAMin
        Data.Ranged
        Data.Ranged.Boundaries
        Data.Ranged.RangedSet
        Data.Ranged.Ranges