packages feed

buildwrapper-0.2.2: buildwrapper.cabal

name:           buildwrapper
version:        0.2.2
cabal-version:  >= 1.8
build-type:     Simple
license:        BSD3
license-file:   LICENSE
synopsis:       A library and an executable that provide an easy API for a Haskell IDE
description:    Buildwrapper is an alternative to scion. 
  It provides services to configure, build and give information on source files to help IDEs manage Haskell projects.
  You can use buildwrapper to build project and retrieve errors, get outline for each module source, get the type of something inside a source file, get lexer tokens, etc.
  Buildwrapper is used in the EclipseFP project (Eclipse plugins for Haskell development)
category:       Development
stability:      beta
maintainer:     JP Moresmau <jpmoresmau@gmail.com>
author:         JP Moresmau <jpmoresmau@gmail.com>, based on the work of Thomas Schilling and others
homepage:       https://github.com/JPMoresmau/BuildWrapper

library
  hs-source-dirs:  src
  build-depends:   
                   base < 5,
                   filepath,
                   mtl,
                   directory,
                   Cabal,
                   process,
                   regex-tdfa,
                   ghc,
                   ghc-paths,
                   syb,
                   ghc-syb-utils,
                   text,
                   containers,
                   vector,
                   haskell-src-exts,
                   cpphs,
                   old-time,
                   aeson >=0.4,
                   unordered-containers,
                   utf8-string
  ghc-options:     -Wall -fno-warn-unused-do-bind
  exposed-modules: 
                   Language.Haskell.BuildWrapper.API,
                   Language.Haskell.BuildWrapper.Base,
                   Language.Haskell.BuildWrapper.Cabal,
                   Language.Haskell.BuildWrapper.GHC
  extensions:      CPP
  other-modules:   
                   Language.Haskell.BuildWrapper.Find,
                   Language.Haskell.BuildWrapper.Packages,
                   Language.Haskell.BuildWrapper.Src

executable buildwrapper
  hs-source-dirs:  src-exe
  main-is:         Main.hs
  build-depends:   base < 5, buildwrapper, cmdargs, filepath, Cabal, directory, mtl, ghc, cpphs,haskell-src-exts, old-time, ghc-syb-utils, ghc-paths
                   ,vector, containers, syb, process, regex-tdfa, text, aeson >=0.4, bytestring
  ghc-options:     -Wall -fno-warn-unused-do-bind
  other-modules:   Language.Haskell.BuildWrapper.CMD
  
test-suite buildwrapper-test
  type:            exitcode-stdio-1.0
  hs-source-dirs:  test
  build-depends:   base < 5, buildwrapper, HUnit, mtl, filepath, directory, Cabal, old-time, aeson >=0.4, text, process, bytestring, attoparsec, test-framework, test-framework-hunit
  main-is:         Main.hs
  ghc-options:     -Wall -fno-warn-unused-do-bind
  x-uses-tf:       true
  other-modules:   
                   Language.Haskell.BuildWrapper.APITest, Language.Haskell.BuildWrapper.Tests, Language.Haskell.BuildWrapper.CMDTests,
                   Language.Haskell.BuildWrapper.GHCTests

source-repository head
  type:     git
  location: git://github.com/JPMoresmau/BuildWrapper.git