gdritter repos hatch / master hatch.cabal
master

Tree @master (Download .tar.gz)

hatch.cabal @masterraw · history · blame

name: hatch
version: 0.1
synopsis: A Haskell toolchain manager
description:
  The @hatch@ program allows for project-, user-, and system-level
  switching between versions of GHC
license: BSD3
author: Getty Ritter <hatch@infinitenegativeutility.com>
maintainer: Getty Ritter <hatch@infinitenegativeutility.com>
copyright: @2018 Getty Ritter
category: Build
build-type: Simple
cabal-version: >=2.0

library
  hs-source-dirs: src
  ghc-options: -Wall
  build-depends: base >=4.7 && <5
               , config-ini
               , lens-family-core
               , lens-family-th
               , text
               , xdg-basedir
               , directory
               , filepath
               , unix
               , Cabal
  default-language: Haskell2010
  default-extensions: ScopedTypeVariables
  exposed-modules: Hatch
  other-modules: Types
                 Config
                 Util

executable hatch
  hs-source-dirs: hatch
  main-is: Main.hs
  default-language: Haskell2010
  default-extensions: ScopedTypeVariables
  ghc-options: -Wall
  build-depends: base >=4.7 && <5
               , hatch