You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

97 lines
2.3KB

  1. cabal-version: 1.12
  2. -- This file has been generated from package.yaml by hpack version 0.31.2.
  3. --
  4. -- see: https://github.com/sol/hpack
  5. --
  6. -- hash: 73007a389ec8f6641f20fee7630b2329226a4677d5a1c4a2dfe3c7fcb973f5ad
  7. name: haskell-basic-irc-bot
  8. version: 0.1.0.0
  9. description: Please see the README on GitHub at <https://github.com/githubuser/haskell-basic-irc-bot#readme>
  10. homepage: https://github.com/githubuser/haskell-basic-irc-bot#readme
  11. bug-reports: https://github.com/githubuser/haskell-basic-irc-bot/issues
  12. author: Author name here
  13. maintainer: example@example.com
  14. copyright: 2019 Author name here
  15. license: BSD3
  16. license-file: LICENSE
  17. build-type: Simple
  18. extra-source-files:
  19. README.md
  20. ChangeLog.md
  21. source-repository head
  22. type: git
  23. location: https://github.com/githubuser/haskell-basic-irc-bot
  24. library
  25. exposed-modules:
  26. IrcBot.BotNetwork
  27. , IrcBot.BotNetworkCommands
  28. , IrcBot.JsonConfigDecoder
  29. , IrcBot.BotActions
  30. , IrcBot.MessageParser
  31. , IrcBot.RemoteUploader
  32. , IrcBot.IrcBot
  33. , IrcBot.RandomFileFinder
  34. , IrcBot.BotCustomCommands
  35. , IrcBot.Definitions.ServerResponse
  36. , IrcBot.Definitions.ServerAddress
  37. , IrcBot.Definitions.Options
  38. , IrcBot.Config.ConfigHelper
  39. other-modules:
  40. Paths_haskell_basic_irc_bot
  41. hs-source-dirs:
  42. src
  43. build-depends:
  44. base >=4.7 && <5
  45. , network
  46. , bytestring
  47. , text
  48. , process
  49. , directory
  50. , random
  51. , connection
  52. , json
  53. , aeson
  54. , MissingH
  55. , split
  56. , lens
  57. default-language: Haskell2010
  58. executable haskell-basic-irc-bot-exe
  59. main-is: Main.hs
  60. other-modules:
  61. Paths_haskell_basic_irc_bot
  62. hs-source-dirs:
  63. app
  64. ghc-options: -threaded -rtsopts -with-rtsopts=-N
  65. build-depends:
  66. base >=4.7 && <5
  67. , haskell-basic-irc-bot
  68. , network
  69. , bytestring
  70. , text
  71. , process
  72. , random
  73. , connection
  74. , json
  75. , aeson
  76. , split
  77. , lens
  78. default-language: Haskell2010
  79. test-suite haskell-basic-irc-bot-test
  80. type: exitcode-stdio-1.0
  81. main-is: Spec.hs
  82. other-modules:
  83. Paths_haskell_basic_irc_bot
  84. hs-source-dirs:
  85. test
  86. ghc-options: -threaded -rtsopts -with-rtsopts=-N
  87. build-depends:
  88. base >=4.7 && <5
  89. , haskell-basic-irc-bot
  90. default-language: Haskell2010