name: regexqq version: 0.6 cabal-version: >= 1.2 build-type: Simple license: BSD3 license-file: LICENSE category: Text author: Matt Morrow copyright: Matt Morrow maintainer: Matt Morrow homepage: http://code.haskell.org/~morrow/code/haskell/regexqq stability: unstable synopsis: A quasiquoter for PCRE regexes. description: A quasiquoter for Text.Regex.PCRE regexes. This makes use of a new GHC extension known as QuasiQuotes. QuasiQuotes do not appear in ghc until 6.9, BUT there is a patch for ghc-6.8.3 which adds quasiquote functionality. A patched version of ghc-6.8.3, made possible by audreyt's patch, is at . An example of the use of @regexqq@ is located at . Haddock docs are at . library build-depends: base, bytestring, template-haskell >= 2.2, pcre-light extensions: TemplateHaskell ghc-options: -O2 -fglasgow-exts hs-source-dirs: . exposed-modules: Text.Regex.PCRE.QQ