yesod-bin.cabal 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. name: yesod-bin
  2. version: 1.4.18.1
  3. license: MIT
  4. license-file: LICENSE
  5. author: Michael Snoyman <michael@snoyman.com>
  6. maintainer: Michael Snoyman <michael@snoyman.com>
  7. synopsis: The yesod helper executable.
  8. description: Provides scaffolding, devel server, and some simple code generation helpers.
  9. category: Web, Yesod
  10. stability: Stable
  11. cabal-version: >= 1.6
  12. build-type: Simple
  13. homepage: http://www.yesodweb.com/
  14. data-files: refreshing.html
  15. extra-source-files:
  16. ChangeLog.md
  17. *.pem
  18. executable yesod-ghc-wrapper
  19. main-is: ghcwrapper.hs
  20. build-depends:
  21. base >= 4 && < 5
  22. , Cabal
  23. executable yesod-ld-wrapper
  24. main-is: ghcwrapper.hs
  25. cpp-options: -DLDCMD
  26. build-depends:
  27. base >= 4 && < 5
  28. , Cabal
  29. executable yesod-ar-wrapper
  30. main-is: ghcwrapper.hs
  31. cpp-options: -DARCMD
  32. build-depends:
  33. base >= 4 && < 5
  34. , Cabal
  35. executable yesod
  36. if os(windows)
  37. cpp-options: -DWINDOWS
  38. build-depends: base >= 4.3 && < 5
  39. , ghc >= 7.0.3
  40. , ghc-paths >= 0.1
  41. , parsec >= 2.1 && < 4
  42. , text >= 0.11
  43. , shakespeare >= 2.0
  44. , bytestring >= 0.9.1.4
  45. , time >= 1.1.4
  46. , template-haskell
  47. , directory >= 1.2.1
  48. , Cabal
  49. , unix-compat >= 0.2 && < 0.5
  50. , containers >= 0.2
  51. , attoparsec >= 0.10
  52. , http-types >= 0.7
  53. , blaze-builder >= 0.2.1.4 && < 0.5
  54. , filepath >= 1.1
  55. , process
  56. , zlib >= 0.5
  57. , tar >= 0.4 && < 0.6
  58. , unordered-containers
  59. , yaml >= 0.8 && < 0.9
  60. , optparse-applicative >= 0.11
  61. , fsnotify >= 0.0 && < 0.3
  62. , split >= 0.2 && < 0.3
  63. , file-embed
  64. , conduit >= 1.2
  65. , conduit-extra
  66. , resourcet >= 0.3 && < 1.2
  67. , base64-bytestring
  68. , lifted-base
  69. , http-reverse-proxy >= 0.4
  70. , network
  71. , http-conduit >= 2.1.4
  72. , http-client
  73. , project-template >= 0.1.1
  74. , transformers
  75. , transformers-compat
  76. , warp >= 1.3.7.5
  77. , wai >= 2.0
  78. , wai-extra
  79. , data-default-class
  80. , streaming-commons
  81. , warp-tls >= 3.0.1
  82. , async
  83. , deepseq
  84. ghc-options: -Wall -threaded -rtsopts
  85. main-is: main.hs
  86. other-modules: Devel
  87. Build
  88. GhcBuild
  89. Keter
  90. AddHandler
  91. Paths_yesod_bin
  92. Options
  93. HsFile
  94. source-repository head
  95. type: git
  96. location: https://github.com/yesodweb/yesod