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.

49 lines
1.2KB

  1. name: haskell-basic-irc-bot
  2. version: 0.1.0.0
  3. github: "githubuser/haskell-basic-irc-bot"
  4. license: BSD3
  5. author: "Author name here"
  6. maintainer: "example@example.com"
  7. copyright: "2019 Author name here"
  8. extra-source-files:
  9. - README.md
  10. - ChangeLog.md
  11. # Metadata used when publishing your package
  12. # synopsis: Short description of your package
  13. # category: Web
  14. # To avoid duplicated efforts in documentation and dealing with the
  15. # complications of embedding Haddock markup inside cabal files, it is
  16. # common to point users to the README.md file.
  17. description: Please see the README on GitHub at <https://github.com/githubuser/haskell-basic-irc-bot#readme>
  18. dependencies:
  19. - base >= 4.7 && < 5
  20. library:
  21. source-dirs: src
  22. executables:
  23. haskell-basic-irc-bot-exe:
  24. main: Main.hs
  25. source-dirs: app
  26. ghc-options:
  27. - -threaded
  28. - -rtsopts
  29. - -with-rtsopts=-N
  30. dependencies:
  31. - haskell-basic-irc-bot
  32. tests:
  33. haskell-basic-irc-bot-test:
  34. main: Spec.hs
  35. source-dirs: test
  36. ghc-options:
  37. - -threaded
  38. - -rtsopts
  39. - -with-rtsopts=-N
  40. dependencies:
  41. - haskell-basic-irc-bot