packages feed

stackage-cabal-0.1.1: stackage-cabal.cabal

name:                stackage-cabal
version:             0.1.1
synopsis:
  A CLI executable for cabal-based stackage commands
description:
  A CLI executable for cabal-based stackage commands
homepage:
  https://www.stackage.org/package/stackage-cabal
bug-reports:
  https://github.com/fpco/stackage-cabal/issues

license:             MIT
license-file:        LICENSE
author:              Dan Burton
maintainer:          danburton@fpcomplete.com
copyright:           2015 FP Complete Corporation

build-type:          Simple
cabal-version:       >=1.10
category: Development
extra-source-files:  README.md ChangeLog.md

source-repository head
  type:     git
  location: git://github.com/fpco/stackage-cabal.git


library
  hs-source-dirs:      src
  exposed-modules:
      Stackage.CLI.Init
    , Stackage.CLI.Purge
    , Stackage.CLI.Upgrade
  build-depends:
      base >=4.7 && <5
  default-language:    Haskell2010


executable stackage-init
  hs-source-dirs:      main
  main-is:             Init.hs
  build-depends:
      base >=4.7 && <5
    , text
    , stackage-cli
    , system-fileio
    , optparse-applicative
    , http-client
    , http-client-tls
    , http-types
    , bytestring
  default-language:    Haskell2010

executable stackage-purge
  hs-source-dirs:      main
  main-is:             Purge.hs
  build-depends:
      base >=4.7 && <5
    , text
    , stackage-cli
    , system-fileio
    , optparse-applicative
    , process
    , parsec
    , exceptions
  default-language:    Haskell2010

executable stackage-upgrade
  hs-source-dirs:      main
  main-is:             Upgrade.hs
  build-depends:
      base >=4.7 && <5
    , text
    , stackage-cli
    , system-fileio
    , optparse-applicative
  default-language:    Haskell2010