name: Rlang-QQ version: 0.2.1.0 cabal-version: >=1.10 build-type: Simple license: BSD3 license-file: LICENSE maintainer: Adam Vogt homepage: http://code.haskell.org/~aavogt/Rlang-QQ synopsis: quasiquoter for inline-R code description: This quasiquoter calls R () from ghc. Variables from the haskell-side are passed in, and variables created (or modified) are returned as the value of the quasiquote. . The R package knitr is used, which allows recording plots. But for this to work, you need to install it first, for example with: . > R --no-save <<< 'install.packages("knitr")' category: Development author: Adam Vogt tested-with: GHC == 7.6.2, GHC == 7.8.2 data-dir: rsrc data-files: Tree.R parseTreeExample.R extra-source-files: examples/*.hs, examples/*.Rmd, examples/*.png examples/*.ipynb examples/*.html examples/Makefile source-repository head type: darcs location: http://code.haskell.org/~aavogt/Rlang-QQ library hs-source-dirs: src default-language: Haskell2010 default-extensions: ConstraintKinds DataKinds FlexibleContexts FlexibleInstances FunctionalDependencies GADTs KindSignatures MultiParamTypeClasses ScopedTypeVariables TypeFamilies TypeOperators ViewPatterns other-extensions: NoMonomorphismRestriction PolyKinds TemplateHaskell UndecidableInstances CPP if (impl(ghc > 7.7)) default-extensions: AllowAmbiguousTypes build-depends: base ==4.*, containers, template-haskell <= 3, directory, process, trifecta >= 1.4, utf8-string ==0.3.*, bytestring, Cabal, syb, mtl, transformers, binary, vector, HList >= 0.3.4, temporary, text, array, zlib, filepath, split, haskell-src-meta if flag(repa) build-depends: repa cpp-options: -DREPA exposed-modules: RlangQQ.Internal RlangQQ.Binary RlangQQ.Antiquote RlangQQ.FN RlangQQ.NatQQ RlangQQ.MakeRecord RlangQQ.ParseKnitted RlangQQ HListExtras other-modules: Paths_Rlang_QQ exposed: True buildable: True flag repa description: enable repa (can be disabled to allow building RlangQQ with ghc-7.8) default: True test-suite doctests type: exitcode-stdio-1.0 ghc-options: -threaded main-is: doctests.hs build-depends: base, doctest >= 0.8