~ubuntu-branches/ubuntu/precise/ghc/precise

« back to all changes in this revision

Viewing changes to libraries/template-haskell/template-haskell.cabal

  • Committer: Bazaar Package Importer
  • Author(s): Joachim Breitner
  • Date: 2011-01-17 12:49:24 UTC
  • Revision ID: james.westby@ubuntu.com-20110117124924-do1pym1jlf5o636m
Tags: upstream-7.0.1
ImportĀ upstreamĀ versionĀ 7.0.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
name:           template-haskell
 
2
version:        2.5.0.0
 
3
license:        BSD3
 
4
license-file:   LICENSE
 
5
maintainer:     libraries@haskell.org
 
6
bug-reports: http://hackage.haskell.org/trac/ghc/newticket?component=Template%20Haskell
 
7
description:
 
8
    Facilities for manipulating Haskell source code using Template Haskell.
 
9
build-type: Simple
 
10
Cabal-Version: >= 1.6
 
11
 
 
12
Library
 
13
    build-depends: base >= 4.2 && < 5,
 
14
                   pretty, containers
 
15
    exposed-modules:
 
16
        Language.Haskell.TH.Syntax.Internals
 
17
        Language.Haskell.TH.Syntax
 
18
        Language.Haskell.TH.PprLib
 
19
        Language.Haskell.TH.Ppr
 
20
        Language.Haskell.TH.Lib
 
21
        Language.Haskell.TH.Quote
 
22
        Language.Haskell.TH
 
23
    extensions: MagicHash, PatternGuards, PolymorphicComponents,
 
24
                DeriveDataTypeable, TypeSynonymInstances
 
25
    -- We need to set the package name to template-haskell (without a
 
26
    -- version number) as it's magic.
 
27
    ghc-options: -package-name template-haskell
 
28
 
 
29
source-repository head
 
30
    type:     darcs
 
31
    location: http://darcs.haskell.org/packages/template-haskell/
 
32