git-exterminate.cabal 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. name: git-exterminate
  2. version: 0.0.0
  3. synopsis: Integrated bug tracking in git.
  4. description:
  5. git-exterminate is a distributed bug tracker integrated in git. It
  6. eliminates the need for centralized bug tracking systems.
  7. license: GPL-3
  8. license-file: LICENSE
  9. author: Peter Harpending
  10. maintainer: peter@harpending.org
  11. copyright: Copyright (C) 2015 Peter Harpending
  12. category: Development
  13. build-type: Simple
  14. cabal-version: >=1.10
  15. extra-source-files:
  16. README.md
  17. library
  18. -- other-modules:
  19. -- other-extensions:
  20. exposed-modules:
  21. hs-source-dirs: src
  22. default-language: Haskell2010
  23. build-depends: aeson >=0.7
  24. , aeson-pretty >=0.7
  25. , base ==4.7.*
  26. , bytestring ==0.10.*
  27. , decamp ==0.0.0
  28. , hit ==0.6.*
  29. , optparse-applicative ==0.11.*
  30. executable git-exterminate
  31. -- other-modules:
  32. -- other-extensions:
  33. main-is: git-exterminate.hs
  34. default-language: Haskell2010
  35. build-depends: aeson >=0.7
  36. , aeson-pretty >=0.7
  37. , base ==4.7.*
  38. , bytestring ==0.10.*
  39. , decamp ==0.0.0
  40. , hit ==0.6.*
  41. , optparse-applicative ==0.11.*