1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- name: git-exterminate
- version: 0.0.0
- synopsis: Integrated bug tracking in git.
- description:
- git-exterminate is a distributed bug tracker integrated in git. It
- eliminates the need for centralized bug tracking systems.
- license: GPL-3
- license-file: LICENSE
- author: Peter Harpending
- maintainer: peter@harpending.org
- copyright: Copyright (C) 2015 Peter Harpending
- category: Development
- build-type: Simple
- cabal-version: >=1.10
- extra-source-files:
- README.md
- library
- -- other-modules:
- -- other-extensions:
- exposed-modules:
- hs-source-dirs: src
- default-language: Haskell2010
- build-depends: aeson >=0.7
- , aeson-pretty >=0.7
- , base ==4.7.*
- , bytestring ==0.10.*
- , decamp ==0.0.0
- , hit ==0.6.*
- , optparse-applicative ==0.11.*
- executable git-exterminate
- -- other-modules:
- -- other-extensions:
- main-is: git-exterminate.hs
- default-language: Haskell2010
- build-depends: aeson >=0.7
- , aeson-pretty >=0.7
- , base ==4.7.*
- , bytestring ==0.10.*
- , decamp ==0.0.0
- , hit ==0.6.*
- , optparse-applicative ==0.11.*
-
|