ghc-mod/ghc-mod.cabal

126 lines
5.0 KiB
Plaintext
Raw Normal View History

2010-01-06 05:38:06 +00:00
Name: ghc-mod
2013-09-16 03:07:03 +00:00
Version: 3.0.2
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/
2013-05-21 02:04:54 +00:00
Synopsis: Happy Haskell Programming
Description: The ghc-mod command is a backend command to enrich
Haskell programming on editors including
Emacs, Vim, and Sublime.
The ghc-mod command is based on ghc-mod library
which is a wrapper of GHC API.
This package includes the ghc-mod command,
2013-05-21 12:38:19 +00:00
the ghc-mod library, and Emacs front-end
2013-05-21 02:04:54 +00:00
(for historical reasons).
2013-05-21 13:20:48 +00:00
For more information, please see its home page.
2013-05-21 02:04:54 +00:00
2010-01-06 05:38:06 +00:00
Category: Development
2013-02-15 01:47:56 +00:00
Cabal-Version: >= 1.10
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
2013-05-21 02:04:54 +00:00
ghc-ins-mod.el ghc-indent.el ghc-pkg.el
2013-03-01 02:39:47 +00:00
Extra-Source-Files: ChangeLog
test/data/*.cabal
2013-02-15 01:47:56 +00:00
test/data/*.hs
2013-09-06 04:52:56 +00:00
test/data/cabal.sandbox.config
test/data/.cabal-sandbox/i386-osx-ghc-7.6.3-packages.conf.d/dummy
2013-02-15 01:47:56 +00:00
test/data/ghc-mod-check/*.hs
test/data/ghc-mod-check/*.cabal
test/data/ghc-mod-check/Data/*.hs
test/data/subdir1/subdir2/dummy
2013-03-16 03:08:54 +00:00
test/data/check-test-subdir/*.cabal
test/data/check-test-subdir/test/*.hs
test/data/check-test-subdir/test/Bar/*.hs
test/data/check-test-subdir/src/Check/Test/*.hs
2013-05-17 01:00:01 +00:00
Library
2013-02-15 01:47:56 +00:00
Default-Language: Haskell2010
2012-08-06 00:43:47 +00:00
GHC-Options: -Wall
2013-05-17 01:00:01 +00:00
Exposed-Modules: Language.Haskell.GhcMod
Language.Haskell.GhcMod.Internal
2013-05-17 01:00:01 +00:00
Other-Modules: Language.Haskell.GhcMod.Browse
Language.Haskell.GhcMod.CabalApi
Language.Haskell.GhcMod.Check
Language.Haskell.GhcMod.Cradle
Language.Haskell.GhcMod.Doc
Language.Haskell.GhcMod.Debug
Language.Haskell.GhcMod.ErrMsg
Language.Haskell.GhcMod.Flag
Language.Haskell.GhcMod.GHCApi
Language.Haskell.GhcMod.GHCChoice
Language.Haskell.GhcMod.Gap
Language.Haskell.GhcMod.Info
Language.Haskell.GhcMod.Lang
Language.Haskell.GhcMod.Lint
Language.Haskell.GhcMod.List
Language.Haskell.GhcMod.Types
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
2013-09-03 02:58:23 +00:00
, 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
, syb
, time
2012-02-14 07:09:53 +00:00
, transformers
2013-05-17 01:00:01 +00:00
Executable ghc-mod
Default-Language: Haskell2010
Main-Is: GHCMod.hs
Other-Modules: Paths_ghc_mod
GHC-Options: -Wall
HS-Source-Dirs: src
Build-Depends: base >= 4.0 && < 5
, directory
, filepath
, ghc
, ghc-mod
2013-02-12 05:06:22 +00:00
Test-Suite spec
2013-02-15 01:47:56 +00:00
Default-Language: Haskell2010
2013-02-12 05:06:22 +00:00
Main-Is: Spec.hs
Hs-Source-Dirs: test, .
Type: exitcode-stdio-1.0
2013-09-03 02:49:35 +00:00
Other-Modules: Dir
2013-02-12 05:18:19 +00:00
BrowseSpec
2013-02-12 07:24:33 +00:00
CabalApiSpec
CheckSpec
2013-03-13 04:37:17 +00:00
DebugSpec
2013-02-12 05:12:15 +00:00
FlagSpec
2013-02-13 07:22:07 +00:00
InfoSpec
2013-02-12 05:06:22 +00:00
LangSpec
2013-02-12 05:31:01 +00:00
LintSpec
2013-02-12 05:06:22 +00:00
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
, syb
, time
, transformers
, hspec >= 1.7.1
2013-02-12 05:06:22 +00:00
2010-03-10 03:06:06 +00:00
Source-Repository head
Type: git
Location: git://github.com/kazu-yamamoto/ghc-mod.git