packages feed

cabalQuery-0.1.0.0: cabalQuery.cabal

name:                cabalQuery
version:             0.1.0.0
synopsis:            A simple tool to query cabal files.
description:         Command line access to the cabal package description
                     files.
                     .
                     cabalQuery allows you to query one or more .cabal files
                     for fields that may be useful in other contexts, such
                     as a build system, where you may need the version number,
                     lincense, authors, copyright, etc.. in a programatic way,
                     but without access to the Cabal libraries.
license:             BSD3
homepage:            http://github.com/creswick/cabal-query
Bug-Reports:         http://github.com/creswick/cabal-query/issues
license-file:        LICENSE
author:              Rogan Creswick
maintainer:          creswick@gmail.com
copyright:           2015, Rogan Creswick
category:            Development
build-type:          Simple
-- extra-source-files:
cabal-version:       >=1.18

source-repository head
  type:     git
  location: git://github.com/creswick/cabal-query.git

library
  exposed-modules:     Distribution.Query
  build-depends:       base >=4.6 && <4.7,
                       Cabal >= 1.22,
                       pretty

  hs-source-dirs:      src
  default-language:    Haskell2010
  ghc-options: -Wall

executable cabalQuery
  default-language: Haskell2010
  hs-source-dirs: tools
  main-is: Main.hs

  build-depends:       base >=4.6 && <4.7,
                       Cabal >= 1.22,
                       cabal-query,
                       MissingH,
                       containers

  ghc-options: -Wall