packages feed

git-freq-0.0.2: git-freq.cabal

Name:                   git-freq
Version:                0.0.2
Author:                 Fujimura Daisuke<me@fujimuradaisuke.com>
Maintainer:             Fujimura Daisuke<me@fujimuradaisuke.com>
License:                BSD3
License-File:           LICENSE
Synopsis:               A Git subcommand to show total addition, deletion per file
Description:            A Git subcommand to show total addition, deletion per file
Cabal-Version:          >= 1.10
Homepage:               https://github.com/fujimura/git-freq
Build-Type:             Simple

Executable git-freq
  Main-Is:              Main.hs
  Default-Language:     Haskell2010
  GHC-Options:          -Wall
                        -fno-warn-name-shadowing
  Hs-Source-Dirs:       src
  Build-Depends:        base >= 4 && < 5
                      , bytestring
                      , containers
                      , optparse-applicative
                      , process
                      , text
  Other-modules:        Git.Freq
                      , Git.Freq.Source
                      , Git.Freq.Version

test-suite spec
  Main-Is:              Spec.hs
  Default-Language:     Haskell2010
  GHC-Options:          -Wall
                        -fno-warn-name-shadowing
  Hs-Source-Dirs:       src
                      , test
  Type:                 exitcode-stdio-1.0
  Build-Depends:        base
                      , bytestring
                      , containers
                      , hspec
                      , optparse-applicative
                      , process
                      , text

Source-Repository head
  Type:                 git
  Location:             git@github.com:fujimura/git-freq.git