hatch.cabal 967 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. name: hatch
  2. version: 0.1.0.0
  3. synopsis: A Haskell toolchain manager
  4. -- description:
  5. license: BSD3
  6. author: Getty Ritter <hatch@infinitenegativeutility.com>
  7. maintainer: Getty Ritter <hatch@infinitenegativeutility.com>
  8. copyright: @2018 Getty Ritter
  9. category: Build
  10. build-type: Simple
  11. cabal-version: >=1.14
  12. library
  13. hs-source-dirs: src
  14. ghc-options: -Wall
  15. build-depends: base >=4.7 && <5
  16. , config-ini
  17. , lens-family-core
  18. , lens-family-th
  19. , text
  20. , xdg-basedir
  21. , directory
  22. , filepath
  23. , unix
  24. default-language: Haskell2010
  25. default-extensions: ScopedTypeVariables
  26. exposed-modules: Hatch
  27. other-modules: Types
  28. Config
  29. executable hatch
  30. hs-source-dirs: hatch
  31. main-is: Main.hs
  32. default-language: Haskell2010
  33. default-extensions: ScopedTypeVariables
  34. ghc-options: -Wall
  35. build-depends: base >=4.7 && <5
  36. , hatch