packages feed

stackage-sandbox-0.1.3: stackage-sandbox.cabal

name:                stackage-sandbox
version:             0.1.3
synopsis:
  Work with shared stackage sandboxes
description:
  Work with shared stackage sandboxes
homepage:
  https://www.stackage.org/package/stackage-sandbox
bug-reports:
  https://github.com/fpco/stackage-sandbox/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-sandbox.git

library
  hs-source-dirs:      src
  ghc-options:         -Wall -O2
  exposed-modules:
      Stackage.CLI.Sandbox
  build-depends:
      base >= 4.7 && <5
  default-language:    Haskell2010


executable stackage-sandbox
  hs-source-dirs:      main
  main-is:             Sandbox.hs
  ghc-options:         -Wall -O2
  build-depends:
      base >=4.7 && <5
    , text
    , stackage-cli
    , optparse-applicative
    , process
    , filepath
    , directory
    , attoparsec
    , conduit-combinators >=0.4
    , conduit-extra
    , bytestring
  default-language:    Haskell2010