packages feed

remote-debugger-0.2.1: remote-debugger.cabal

name:                remote-debugger
version:             0.2.1
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.8.3,
                        ghc-paths,
                        array,
                        network,
                        json

source-repository head
    type:     git
    location: git@github.com:octomarat/HaskellDebugger.git