packages feed

gitcache-0.2: gitcache.cabal

Name:                gitcache
Version:             0.2
Synopsis:            Simple git utility to use and manage clone cache
Description:
    Manage cache of git repository for faster cloning and offline working
License:             BSD3
License-file:        LICENSE
Copyright:           Vincent Hanquez <vincent@snarc.org>
Author:              Vincent Hanquez <vincent@snarc.org>
Maintainer:          vincent@snarc.org
Category:            Tools
Stability:           experimental
Build-Type:          Simple
Homepage:            https://github.com/vincenthz/gitcache
Bug-Reports:         https://github.com/vincenthz/gitcache/issues
Cabal-Version:       >=1.10
extra-source-files:  README.md

source-repository head
  type: git
  location: https://github.com/vincenthz/gitcache

Executable           gitcache
  Main-Is:           gitcache.hs
  ghc-options:       -Wall -fno-warn-missing-signatures
  Hs-Source-Dirs:    src
  Build-depends:     base >= 4 && < 5
                   , process
                   , filepath
                   , directory
                   , utf8-string
                   , cryptohash
  default-language:  Haskell2010