packages feed

shift-0.2.0.1: shift.cabal

name:                shift
version:             0.2.0.1
synopsis:            A tool to quickly switch between directories
description:         This is a command-line tool to "teleport" between directories
homepage:            https://github.com/vmchale/teleport#readme
license:             MIT
license-file:        LICENSE
author:              Siddharth Bhat, Vanessa McHale
maintainer:          vamchale@gmail.com
copyright:           2010 Siddharth Bhat, 2017 Vanessa McHale
category:            Tools
build-type:          Simple
bug-reports:         https://github.com/vmchale/teleport/issues 
stability:           unstable
cabal-version:       >=1.10
extra-source-files:  README.md
                   , stack.yaml
                   , bash/teleport

library
  hs-source-dirs:      src
  exposed-modules:     Teleport
  other-modules:       Paths_shift
  build-depends:       base >= 4.7 && < 5
                     , turtle
                     , optparse-applicative
                     , system-filepath
                     , text
                     , binary
                     , composition
                     , lens
                     , bytestring
                     , ansi-terminal
                     , system-fileio
                     , data-default
  default-language:    Haskell2010
  default-extensions:  DeriveAnyClass
                     , DeriveGeneric
  ghc-options:         -fwarn-unused-imports

executable teleport-hask
  hs-source-dirs:      app
  main-is:             Main.hs
  ghc-options:         -threaded -rtsopts -with-rtsopts=-N
  build-depends:       base
                     , shift
  default-language:    Haskell2010

source-repository head
  type:     git
  location: https://github.com/vmchale/teleport