packages feed

R-pandoc-0.2.3: R-pandoc.cabal

name: R-pandoc
version: 0.2.3
cabal-version: >=1.10
build-type: Simple
license: BSD3
license-file: LICENSE
maintainer: corentin.dupont@gmail.com
bug-reports: http://github.com/cdupont/R-pandoc/issues
description: A pandoc filter to express R plots inside markdown
category: Text
author: Corentin Dupont
extra-source-files: README.md img/Rplot.png

source-repository head
    type: git
    location: http://github.com/cdupont/R-pandoc.git

library
    build-depends:
        base         >=4.6  && <5,
        pandoc-types >=1.12 && <1.18,
        directory    >=1.2  && <1.4,
        filepath     >=1.3  && <1.5,
        process      >=1.2  && <1.7,
        split        >=0.2  && <0.3
    exposed-modules: Text.Pandoc.R
    exposed: True
    buildable: True
    default-language: Haskell2010
    hs-source-dirs: src
    ghc-options: -Wall

executable R-pandoc
    build-depends:
        base         >=4.6  && <5,
        pandoc-types >=1.12 && <1.18,
        R-pandoc     ==0.2.3
    main-is: src/Main.hs
    buildable: True
    default-language: Haskell2010