packages feed

ghc-pkg-lib-0.3: ghc-pkg-lib.cabal

name:           ghc-pkg-lib
version:        0.3
cabal-version:  >=1.14
build-type:     Simple
author:         Thiago Arrais, JP Moresmau
maintainer:     jp@moresmau.fr
license:        BSD3
license-file:   LICENSE
copyright:      (c) Thiago Arrais 2009
stability:      stable
synopsis:       Provide library support for ghc-pkg information
description:    A library that lists the installed packages in a given sandbox and/or in the global and user package databases
category:       Development
homepage:       https://github.com/JPMoresmau/ghc-pkg-lib

flag lib-Werror
  default: False
  manual: True

library
  hs-source-dirs:   src
  build-depends:   
                    base < 5,
                    ghc-paths >=0.1.0,
                    filepath,
                    directory,
                    ghc,
                    Cabal >=1.14
  ghc-options:      -Wall
  exposed-modules:  Language.Haskell.Packages
  default-language: Haskell98
  
  if flag(lib-Werror)
    ghc-options: -Werror

source-repository head
  type:     git
  location: git@github.com:JPMoresmau/ghc-pkg-lib.git