A static site generator written in Haskell
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

package.yaml 1.1KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. name: clover
  2. version: 0.1.0.0
  3. github: "githubuser/clover"
  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. # Metadata used when publishing your package
  11. # synopsis: Short description of your package
  12. # category: Web
  13. # To avoid duplicated efforts in documentation and dealing with the
  14. # complications of embedding Haddock markup inside cabal files, it is
  15. # common to point users to the README.md file.
  16. description: Please see the README on GitHub at <https://github.com/githubuser/clover#readme>
  17. dependencies:
  18. - aeson
  19. - argparser
  20. - base >= 4.7 && < 5
  21. - containers
  22. - directory
  23. - doctemplates
  24. - filepath
  25. - pandoc
  26. - path
  27. - path-io
  28. - text
  29. - time
  30. library:
  31. source-dirs: src
  32. executables:
  33. clover:
  34. main: Main.hs
  35. source-dirs: app
  36. ghc-options:
  37. - -threaded
  38. - -rtsopts
  39. - -with-rtsopts=-N
  40. dependencies:
  41. - clover
  42. tests:
  43. clover-test:
  44. main: Spec.hs
  45. source-dirs: test
  46. ghc-options:
  47. - -threaded
  48. - -rtsopts
  49. - -with-rtsopts=-N
  50. dependencies:
  51. - clover