hk-generator.cabal 712 B

1234567891011121314151617181920212223
  1. name: hk-generator
  2. version: 0.1.0.0
  3. -- synopsis:
  4. -- description:
  5. license: BSD3
  6. license-file: LICENSE
  7. author: Getty Ritter <samothes@infinitenegativeutility.com>
  8. maintainer: Getty Ritter <samothes@infinitenegativeutility.com>
  9. copyright: ©2018 Getty Ritter
  10. -- category:
  11. build-type: Simple
  12. cabal-version: >= 1.14
  13. executable hk-generator
  14. hs-source-dirs: src
  15. main-is: Main.hs
  16. default-extensions: OverloadedStrings,
  17. ScopedTypeVariables
  18. ghc-options: -Wall
  19. build-depends: base >=4.7 && <5
  20. , telml-parse
  21. , text
  22. default-language: Haskell2010