funbot.cabal 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. name: funbot
  2. version: 0.4.0.1
  3. synopsis: IRC bot for fun, learning, creativity and collaboration.
  4. description:
  5. One day an idea came up on the #freepost IRC channel: We didn't need much of
  6. the serious features IRC bots provide, but we could develop an IRC bot
  7. collaboratively, for fun and for learning new skills and languages! I also
  8. thought this is a great chance for people to quickly see their code in real
  9. use, which is motivating when learning programming, and it's a chance to
  10. introduce Haskell to the community.
  11. .
  12. While the bot is made for and by the <https://freepo.st Freepost> community,
  13. it is fully intended for use any anyone else! For experienced Haskell
  14. developers, this bot can perhaps provide space for creativity and custom
  15. advanced plugins and features.
  16. .
  17. Since this bot is meant for collaborative development while really running
  18. it, the running instance in @#freepost@ is built from the git repository.
  19. Occasionally releases will be made to Hackage. If you want to be sure you
  20. have all the latest features, check out the git repository (and/or ask us to
  21. make a release if you think it's been long enough).
  22. homepage: https://notabug.org/fr33domlover/funbot
  23. bug-reports: https://notabug.org/fr33domlover/funbot/issues
  24. license: PublicDomain
  25. license-file: COPYING
  26. author: The Freepost community, see AUTHORS file
  27. maintainer: fr33domlover@riseup.net
  28. copyright: ♡ Copying is an act of love. Please copy, reuse and share.
  29. category: Network, IRC
  30. build-type: Simple
  31. extra-source-files:
  32. AUTHORS
  33. ChangeLog
  34. COPYING
  35. INSTALL.md
  36. NEWS.md
  37. README.md
  38. state-default/memos.json
  39. state-default/settings.json
  40. state-default/state.json
  41. state-default/user-options.json
  42. cabal-version: >=1.10
  43. source-repository head
  44. type: git
  45. location: https://notabug.org/fr33domlover/funbot.git
  46. executable funbot
  47. main-is: Main.hs
  48. other-modules: FunBot.Commands
  49. , FunBot.Config
  50. , FunBot.ExtHandlers
  51. , FunBot.History
  52. , FunBot.IrcHandlers
  53. , FunBot.KnownNicks
  54. , FunBot.Memos
  55. , FunBot.Settings
  56. , FunBot.Sources
  57. , FunBot.Sources.FeedWatcher
  58. , FunBot.Sources.Loopback
  59. , FunBot.Sources.WebListener
  60. , FunBot.Sources.WebListener.Client
  61. , FunBot.Sources.WebListener.Gogs
  62. , FunBot.Sources.WebListener.GitLab
  63. , FunBot.Types
  64. , FunBot.UserOptions
  65. , FunBot.Util
  66. -- other-extensions:
  67. build-depends: aeson
  68. , auto-update
  69. , base >=4.7 && <5
  70. , bytestring
  71. , clock >=0.5
  72. , containers >=0.5
  73. , data-default-class
  74. , feed
  75. , feed-collect >=0.2
  76. , funbot-ext-events >=0.2
  77. , HTTP
  78. , http-client >=0.4.19
  79. , http-client-tls >=0.2.2
  80. , http-listen
  81. , irc-fun-bot >=0.5 && <0.6
  82. , irc-fun-color
  83. , json-state
  84. , network-uri
  85. , settings >=0.2.2
  86. , tagsoup >=0.13
  87. , text
  88. , time
  89. , time-interval
  90. , time-units
  91. , transformers
  92. , unordered-containers >=0.2.5
  93. , utf8-string >=1
  94. , vcs-web-hook-parse
  95. hs-source-dirs: src
  96. default-language: Haskell2010