ghc-mod/ghc-mod.cabal

96 lines
3.4 KiB
Plaintext
Raw Normal View History

2010-01-06 05:38:06 +00:00
Name: ghc-mod
2012-12-11 02:58:13 +00:00
Version: 1.11.3
2010-03-10 03:06:06 +00:00
Author: Kazu Yamamoto <kazu@iij.ad.jp>
Maintainer: Kazu Yamamoto <kazu@iij.ad.jp>
2010-01-06 05:38:06 +00:00
License: BSD3
2010-03-10 03:06:06 +00:00
License-File: LICENSE
2010-03-10 08:37:17 +00:00
Homepage: http://www.mew.org/~kazu/proj/ghc-mod/
2012-02-16 08:46:39 +00:00
Synopsis: Happy Haskell programming on Emacs/Vim
2010-03-10 08:33:42 +00:00
Description: This packages includes Elisp files
and a Haskell command, "ghc-mod".
2010-03-10 08:37:17 +00:00
"ghc*.el" enable completion of
2010-03-10 08:33:42 +00:00
Haskell symbols on Emacs.
2010-03-12 04:39:38 +00:00
Flymake is also integrated.
2010-03-10 08:37:17 +00:00
"ghc-mod" is a backend of "ghc*.el".
2010-03-10 08:33:42 +00:00
It lists up all installed modules
2010-02-19 14:43:03 +00:00
or extracts names of functions, classes,
2010-03-10 08:33:42 +00:00
and data declarations.
2012-02-16 08:46:39 +00:00
To use "ghc-mod" on Vim,
2012-03-06 07:04:31 +00:00
see <https://github.com/eagletmt/ghcmod-vim> or
<https://github.com/scrooloose/syntastic>
2010-01-06 05:38:06 +00:00
Category: Development
2010-03-10 03:06:06 +00:00
Cabal-Version: >= 1.6
2010-02-19 14:43:03 +00:00
Build-Type: Simple
2010-01-06 05:38:06 +00:00
Data-Dir: elisp
Data-Files: Makefile ghc.el ghc-func.el ghc-doc.el ghc-comp.el
2012-02-28 11:38:50 +00:00
ghc-flymake.el ghc-command.el ghc-info.el
ghc-ins-mod.el ghc-indent.el
2010-01-06 05:38:06 +00:00
Executable ghc-mod
2010-03-10 03:06:06 +00:00
Main-Is: GHCMod.hs
2012-02-16 05:44:20 +00:00
Other-Modules: Browse
CabalApi
2012-02-14 07:09:53 +00:00
Cabal
CabalDev
Check
ErrMsg
Flag
GHCApi
2012-02-16 05:44:20 +00:00
GHCChoice
2012-02-14 07:09:53 +00:00
Gap
Info
Lang
Lint
List
Paths_ghc_mod
Types
2012-08-06 00:43:47 +00:00
GHC-Options: -Wall
2012-02-14 07:09:53 +00:00
Build-Depends: base >= 4.0 && < 5
2012-10-30 07:27:44 +00:00
, Cabal >= 1.10
, containers
, convertible
2012-02-14 07:09:53 +00:00
, directory
, filepath
, ghc
, ghc-paths
, ghc-syb-utils
2012-02-14 07:09:53 +00:00
, hlint >= 1.7.1
2012-02-16 05:44:20 +00:00
, io-choice
2012-02-14 07:09:53 +00:00
, old-time
, process
, regex-posix
, syb
, time
2012-02-14 07:09:53 +00:00
, transformers
2013-02-12 05:06:22 +00:00
Test-Suite spec
Main-Is: Spec.hs
Hs-Source-Dirs: test, .
Type: exitcode-stdio-1.0
Other-Modules: Expectation
2013-02-12 05:18:19 +00:00
BrowseSpec
2013-02-12 05:12:15 +00:00
FlagSpec
2013-02-12 05:06:22 +00:00
LangSpec
ListSpec
Build-Depends: base >= 4.0 && < 5
, Cabal >= 1.10
, containers
, convertible
, directory
, filepath
, ghc
, ghc-paths
, ghc-syb-utils
, hlint >= 1.7.1
, io-choice
, old-time
, process
, regex-posix
, syb
, time
, transformers
, hspec
2010-03-10 03:06:06 +00:00
Source-Repository head
Type: git
Location: git://github.com/kazu-yamamoto/ghc-mod.git