hypsibius.cabal 924 B

123456789101112131415161718192021222324252627282930
  1. name: hypsibius
  2. version: 0.1.0.0
  3. -- synopsis:
  4. -- description:
  5. license: OtherLicense
  6. license-file: LICENSE
  7. author: Getty Ritter <gettyritter@gmail.com>
  8. maintainer: Getty Ritter <gettyritter@gmail.com>
  9. copyright: ©2016 Getty Ritter
  10. category: Music
  11. build-type: Simple
  12. cabal-version: >= 1.12
  13. executable hypsibius
  14. hs-source-dirs: src
  15. main-is: Main.hs
  16. other-modules: State
  17. , Draw
  18. , Event
  19. default-extensions: OverloadedStrings,
  20. ScopedTypeVariables
  21. ghc-options: -Wall -threaded
  22. build-depends: base >=4.7 && <4.9
  23. , brick
  24. , lens-family-core
  25. , text
  26. , containers
  27. , vty
  28. , data-default
  29. default-language: Haskell2010