packages feed

gen-imports-0.1.0.1: gen-imports.cabal

name:                gen-imports
version:             0.1.0.1
synopsis:            Code to generate instances for the package "ghc-instances"
description:
  Functions in this package look at the hackage database to get all the public modules of packages.

  It then creates Haskell files containing each module as an import statement.

  It's primary purpose is to produce files for the package
  [ghc-instances](https://hackage.haskell.org/package/ghc-instances).
  See that package for the motivation behind this.
homepage:            https://github.com/clintonmead/gen-imports#readme
license:             BSD3
license-file:        LICENSE
author:              Clinton Mead
maintainer:          clintonmead@gmail.com
copyright:           Copyright: (c) 2017 Clinton Mead
category:            Web
build-type:          Simple
cabal-version:       >=1.10

library
  hs-source-dirs:      src
  exposed-modules:     Distribution.Hackage.Imports.Generate
  build-depends:       base >= 4.7 && < 5, hackage-db < 2, Cabal, containers, pretty, bytestring, filepath
  default-language:    Haskell2010
  ghc-options:         -Wall

source-repository head
  type:     git
  location: https://github.com/clintonmead/gen-imports