packages feed

headergen-0.1.1.0: headergen.cabal

name:                 headergen
version:              0.1.1.0
homepage:             https://github.com/aka-bash0r/headergen
synopsis:             Creates a header for a haskell source file.
description:          The headergen package provides a small utility for
                      creating documentation headers for source files.
license:              MIT
license-file:         LICENSE
author:               Nils 'bash0r' Jonsson
maintainer:           aka.bash0r@gmail.com
copyright:            (c) 2015 Nils 'bash0r' Jonsson
category:             Development
build-type:           Simple
data-dir:             share
cabal-version:        >=1.10

source-repository head
  type:               git
  location:           https://github.com/aka-bash0r/headergen

source-repository this
  type:               git
  location:           https://github.com/aka-bash0r/headergen
  tag:                0.1.1.0


executable headergen
  main-is:            Main.hs
  build-depends:      base         >=4.8     && <4.9
               ,      aeson        >=0.9.0.1 && <0.10
               ,      aeson-pretty >=0.7.2   && <0.8
               ,      directory    >=1.2.2   && <1.3
               ,      filepath     >=1.4     && <1.5
               ,      time         >=1.5.0.1 && <1.6
               ,      bytestring   >=0.10.6  && <0.17
               ,      haskeline    >=0.7.2.1 && <0.8
  hs-source-dirs:     src 
  default-language:   Haskell2010