ghc-mod.cabal 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. Name: ghc-mod
  2. Version: 1.11.3
  3. Author: Kazu Yamamoto <kazu@iij.ad.jp>
  4. Maintainer: Kazu Yamamoto <kazu@iij.ad.jp>
  5. License: BSD3
  6. License-File: LICENSE
  7. Homepage: http://www.mew.org/~kazu/proj/ghc-mod/
  8. Synopsis: Happy Haskell programming on Emacs/Vim
  9. Description: This packages includes Elisp files
  10. and a Haskell command, "ghc-mod".
  11. "ghc*.el" enable completion of
  12. Haskell symbols on Emacs.
  13. Flymake is also integrated.
  14. "ghc-mod" is a backend of "ghc*.el".
  15. It lists up all installed modules
  16. or extracts names of functions, classes,
  17. and data declarations.
  18. To use "ghc-mod" on Vim,
  19. see <https://github.com/eagletmt/ghcmod-vim> or
  20. <https://github.com/scrooloose/syntastic>
  21. Category: Development
  22. Cabal-Version: >= 1.6
  23. Build-Type: Simple
  24. Data-Dir: elisp
  25. Data-Files: Makefile ghc.el ghc-func.el ghc-doc.el ghc-comp.el
  26. ghc-flymake.el ghc-command.el ghc-info.el
  27. ghc-ins-mod.el ghc-indent.el
  28. Executable ghc-mod
  29. Main-Is: GHCMod.hs
  30. Other-Modules: Browse
  31. CabalApi
  32. Cabal
  33. CabalDev
  34. Check
  35. ErrMsg
  36. Flag
  37. GHCApi
  38. GHCChoice
  39. Gap
  40. Info
  41. Lang
  42. Lint
  43. List
  44. Paths_ghc_mod
  45. Types
  46. GHC-Options: -Wall
  47. Build-Depends: base >= 4.0 && < 5
  48. , Cabal >= 1.10
  49. , containers
  50. , convertible
  51. , directory
  52. , filepath
  53. , ghc
  54. , ghc-paths
  55. , ghc-syb-utils
  56. , hlint >= 1.7.1
  57. , io-choice
  58. , old-time
  59. , process
  60. , regex-posix
  61. , syb
  62. , time
  63. , transformers
  64. Test-Suite spec
  65. Main-Is: Spec.hs
  66. Hs-Source-Dirs: test, .
  67. Type: exitcode-stdio-1.0
  68. Other-Modules: Expectation
  69. BrowseSpec
  70. CabalSpec
  71. CabalApiSpec
  72. CheckSpec
  73. FlagSpec
  74. InfoSpec
  75. LangSpec
  76. LintSpec
  77. ListSpec
  78. Build-Depends: base >= 4.0 && < 5
  79. , Cabal >= 1.10
  80. , containers
  81. , convertible
  82. , directory
  83. , filepath
  84. , ghc
  85. , ghc-paths
  86. , ghc-syb-utils
  87. , hlint >= 1.7.1
  88. , io-choice
  89. , old-time
  90. , process
  91. , regex-posix
  92. , syb
  93. , time
  94. , transformers
  95. , hspec
  96. Source-Repository head
  97. Type: git
  98. Location: git://github.com/kazu-yamamoto/ghc-mod.git