bunyan.cabal 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738
  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. default-extensions: ScopedTypeVariables
  27. executable bunyan
  28. hs-source-dirs: bunyan
  29. main-is: Main.hs
  30. other-modules: Options
  31. default-extensions: ScopedTypeVariables
  32. ghc-options: -Wall -threaded
  33. build-depends: base >=4.7 && <5
  34. , bunyan
  35. , directory
  36. default-language: Haskell2010