-
Notifications
You must be signed in to change notification settings - Fork 1
/
remote-debugger.cabal
34 lines (31 loc) · 1.16 KB
/
remote-debugger.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
name: remote-debugger
version: 0.2.2
description: Wraper to GHC debugger API allowing debugging throught socket. Used in haskell-idea-plugin.
license: BSD3
license-file: LICENSE
maintainer: kurbatsky@gmail.com
build-type: Simple
homepage: https://github.com/octomarat/HaskellDebugger
bug-reports: https://github.com/octomarat/HaskellDebugger/issues
category: Debug
synopsis: Interface to ghci debugger
cabal-version: >=1.8
executable remote-debugger
main-is: Main.hs
other-modules:
CmdArgsParser,
CommandParser,
DebuggerImpl,
DebuggerMonad,
DebuggerUtils,
ParserMonad
hs-source-dirs: src
build-depends: base >= 3 && <5,
ghc >= 7.6,
ghc-paths,
array,
network,
json
source-repository head
type: git
location: git@github.com:octomarat/HaskellDebugger.git