packages feed

simple-cabal-0.0.0: simple-cabal.cabal

cabal-version:       2.0
name:                simple-cabal
version:             0.0.0
synopsis:            Cabal file wrapper library
description:         Cabal compatibility layer for reading and
                     parsing .cabal files
homepage:            https://github.com/juhp/simple-cabal
bug-reports:         https://github.com/juhp/simple-cabal/issues
license:             BSD3
license-file:        LICENSE
author:              Jens Petersen
maintainer:          juhpetersen@gmail.com
copyright:           2019 Jens Petersen
category:            Distribution
build-type:          Simple
extra-doc-files:     README.md
                   , CHANGELOG.md
tested-with:         GHC == 8.6.5

source-repository head
  type:                git
  location:            https://github.com/juhp/simple-cabal.git

library
  hs-source-dirs:      src
  exposed-modules:     SimpleCabal
                       

  build-depends:       base < 5,
                       Cabal,
                       directory,
                       filepath

  ghc-options:         -Wall

  default-language:    Haskell2010