hypsibius.cabal 1.2 KB

123456789101112131415161718192021222324252627282930313233343536
  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: Hypsibius.Data
  17. , Hypsibius.Draw
  18. , Hypsibius.Event
  19. , Hypsibius.Formats
  20. , Hypsibius.Formats.Scale
  21. , Hypsibius.State
  22. default-extensions: OverloadedStrings,
  23. ScopedTypeVariables
  24. ghc-options: -Wall -threaded
  25. build-depends: base >=4.7 && <4.10
  26. , brick
  27. , lens-family-core
  28. , lens-family-th
  29. , text
  30. , bytestring
  31. , containers
  32. , vty
  33. , data-default
  34. , adnot
  35. default-language: Haskell2010