bunyan.cabal 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. name: bunyan
  2. version: 0.1.0.0
  3. -- synopsis:
  4. -- description:
  5. license: BSD3
  6. license-file: LICENSE
  7. author: Getty Ritter <gdritter@galois.com>
  8. maintainer: Getty Ritter <gdritter@galois.com>
  9. copyright: ©2017 Getty Ritter
  10. -- category:
  11. build-type: Simple
  12. cabal-version: >= 1.14
  13. library
  14. exposed-modules: Bunyan
  15. other-modules: Bunyan.App
  16. Bunyan.Log
  17. Bunyan.Pretty
  18. hs-source-dirs: src
  19. build-depends: base >=4.7 && <5
  20. , brick
  21. , containers
  22. , process
  23. , text
  24. , vty
  25. default-language: Haskell2010
  26. ghc-options: -Wall
  27. default-extensions: ScopedTypeVariables
  28. executable bunyan
  29. hs-source-dirs: bunyan
  30. main-is: Main.hs
  31. other-modules: Options
  32. default-extensions: ScopedTypeVariables
  33. ghc-options: -Wall -threaded
  34. build-depends: base >=4.7 && <5
  35. , bunyan
  36. , directory
  37. default-language: Haskell2010