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

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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. - fsnotify
  26. - pandoc
  27. - path
  28. - path-io
  29. - text
  30. - time
  31. library:
  32. source-dirs: src
  33. executables:
  34. clover:
  35. main: Main.hs
  36. source-dirs: app
  37. ghc-options:
  38. - -threaded
  39. - -rtsopts
  40. - -with-rtsopts=-N
  41. dependencies:
  42. - clover
  43. tests:
  44. clover-test:
  45. main: Spec.hs
  46. source-dirs: test
  47. ghc-options:
  48. - -threaded
  49. - -rtsopts
  50. - -with-rtsopts=-N
  51. dependencies:
  52. - clover