headergen-0.2.0.0: headergen.cabal
name: headergen
version: 0.2.0.0
homepage: https://github.com/aka-bash0r/headergen
synopsis: Creates a header for a haskell source file.
description: The headergen application can generate
source file headers with default values
configured for a specific project. It
features a full templating engine under the
hood and can be highly customized.
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-files: share/haskell/simple.template
, share/haskell/main.template
extra-source-files: LICENSE
, README.md
, changelog.md
, share/haskell/simple.template
, share/haskell/main.template
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.2.0.0
executable headergen
main-is: Main.hs
other-modules: Headergen.Commands.Creation
, Headergen.Commands.Help
, Headergen.Commands.Initialization
, Headergen.Configuration
, Headergen.Messages
, Headergen.Template.Parser
, Headergen.Template
, Headergen.Utility
, Paths_headergen
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