hatch.cabal 1.1 KB

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