vitalijzad

il mio cabal

Oct 27th, 2016
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.27 KB | None | 0 0
  1. name: reddit-bot
  2. version: 0.1.0.0
  3. synopsis: Initial project template from stack
  4. description: Please see README.md
  5. homepage: https://github.com/githubuser/reddit-bot#readme
  6. license: BSD3
  7. license-file: LICENSE
  8. author: Author name here
  9. maintainer: [email protected]
  10. copyright: 2016 Author name here
  11. category: Web
  12. build-type: Simple
  13. -- extra-source-files:
  14. cabal-version: >=1.10
  15.  
  16. library
  17. hs-source-dirs: src
  18. exposed-modules: Lib
  19. build-depends: base >= 4.7 && < 5
  20. default-language: Haskell2010
  21.  
  22. executable reddit-bot-exe
  23. hs-source-dirs: app
  24. main-is: Main.hs
  25. ghc-options: -threaded -rtsopts -with-rtsopts=-N
  26. build-depends: base
  27. , reddit-bot
  28. default-language: Haskell2010
  29.  
  30. test-suite reddit-bot-test
  31. type: exitcode-stdio-1.0
  32. hs-source-dirs: test
  33. main-is: Spec.hs
  34. build-depends: base, text, reddit-bot, mysql-simple
  35. ghc-options: -threaded -rtsopts -with-rtsopts=-N
  36. default-language: Haskell2010
  37.  
  38. source-repository head
  39. type: git
  40. location: https://github.com/githubuser/reddit-bot
Add Comment
Please, Sign In to add comment