packages feed

Rlang-QQ-0.1.0.3: Rlang-QQ.cabal

name: Rlang-QQ
version: 0.1.0.3
cabal-version: >=1.8
build-type: Simple
license: BSD3
license-file: LICENSE
maintainer: Adam Vogt <vogt.adam@gmail.com>
homepage: http://code.haskell.org/~aavogt/Rlang-QQ
synopsis: quasiquoter for inline-R code
description: This quasiquoter calls R (<http://www.r-project.org/>) from ghc.
             Variables from the haskell-side are passed in, and
             variables created (or modified) are returned as the value
             of the quasiquote.
category: Development
author: Adam Vogt <vogt.adam@gmail.com>
tested-with: GHC == 7.6.2
data-dir: rsrc
data-files: Tree.R parseTreeExample.R
extra-source-files: examples/*.hs,
                    examples/*.Rmd,
                    examples/*.ref
                    examples/*.png
                    examples/Makefile

source-repository head
    type: darcs
    location: http://code.haskell.org/~aavogt/Rlang-QQ

library
    hs-source-dirs: src

    build-depends: base ==4.*, containers,
                   template-haskell ==2.8.*, directory, process,
                   trifecta ==1.*, utf8-string ==0.3.*, bytestring,
                   Cabal, syb, mtl, MaybeT,
                   binary, vector, HList >= 0.3, temporary,
                   text, array, zlib, repa,
                   haskell-src-meta

    exposed-modules: RlangQQ.Internal
                     RlangQQ.Binary
                     RlangQQ.Antiquote
                     RlangQQ.FN
                     RlangQQ.NatQQ
                     RlangQQ.MakeRecord
                     RlangQQ
                     HListExtras

    other-modules:  Paths_Rlang_QQ

    exposed: True
    buildable: True
 
test-suite doctests
  type:          exitcode-stdio-1.0
  ghc-options:   -threaded
  main-is:       doctests.hs
  build-depends: base, doctest >= 0.8