packages feed

hydrogen-cli-0.11: hydrogen-cli.cabal

name:                   hydrogen-cli
version:                0.11
homepage:               https://scravy.de/hydrogen-cli/
synopsis:               Hydrogen Data
license:                MIT
license-file:           LICENSE
extra-source-files:     CHANGELOG.md, README.md
author:                 Julian Fleischer
maintainer:             julian@scravy.de
category:               Language
build-type:             Simple
cabal-version:          >=1.14
data-files:             help/*.txt, templates/*.txt

source-repository head
  type:         git
  location:     https://github.com/scravy/hydrogen-cli

executable h
  main-is:              h.hs
  other-modules:        Paths_hydrogen_cli
                        , H.Dump
                        , H.Init
  build-depends:        base ==4.7.*
                        , hydrogen-cli-args ==0.11
                        , hydrogen-parsing ==0.11
                        , hydrogen-prelude ==0.11
                        , hydrogen-syntax ==0.11
  hs-source-dirs:       src
  ghc-options:          -Wall
  default-language:     Haskell2010
  default-extensions:   CPP
                        , DeriveDataTypeable
                        , DeriveGeneric
                        , EmptyCase
                        , GADTs
                        , LambdaCase
                        , MultiWayIf
                        , NoImplicitPrelude
                        , RecordWildCards
                        , ScopedTypeVariables
                        , TupleSections