Popularity
4.2
Declining
Activity
0.0
Stable
2
4
1
Monthly Downloads: 5
Programming language: Haskell
License: BSD 3-clause "New" or "Revised" License
Tags:
Development
cabal2ghci alternatives and similar packages
Based on the "Development" category.
Alternatively, view cabal2ghci alternatives based on common mentions on social networks and blogs.
-
hadolint
Dockerfile linter, validate inline bash, written in Haskell -
stgi
A user-centric visual STG implementation to help understand GHC/Haskell's execution model. -
structured-haskell-mode
Structured editing minor mode for Haskell in Emacs -
criterion
A powerful but simple library for measuring the performance of Haskell code. -
cabal-install-parsers
Scripts and instructions for using CI services (e.g. Travis CI or Appveyor) with multiple GHC configurations -
haskell-lsp
Haskell library for the Microsoft Language Server Protocol -
inline-c
Write Haskell source files including C code inline. No FFI required. -
inline-java
Haskell/Java interop via inline Java code in Haskell modules. -
gi-atk
Generate Haskell bindings for GObject-Introspection capable libraries -
fourmolu
A fourk of ormolu that uses four space indentation and allows arbitrary configuration. Don't like it? PRs welcome! -
lambdabot
A friendly IRC bot and apprentice coder, written in Haskell. -
lambdabot-core
A friendly IRC bot and apprentice coder, written in Haskell. -
scion
OLD, DEPRECATED: Use this instead https://github.com/haskell/haskell-ide-engine
Access the most powerful time series database as a service
Ingest, store, & analyze all types of time series data in a fully-managed, purpose-built database. Keep data forever with low-cost storage and superior data compression.
Promo
www.influxdata.com
Do you think we are missing an alternative of cabal2ghci or a related project?
Popular Comparisons
README
cabal2ghci
This is the tool to automatically generate .ghci
file and .stylish-haskell.yaml
file from .cabal
. It processes following things:
- Language Pragmas
- hs-src-dirs
Installation
$ cabal install cabal2ghci
Usage
$ cabal2ghci
$ cabal2ghci -c foo.cabal
$ cabal2ghci --nostylish
Integration with haskell-mode
(add-hook 'haskell-mode-hook 'cabal2ghci-haskell-hook)
(defun my-before-save-hook ()
(ignore-errors (call-process "cabal2ghci")))
(defun cabal2ghci-haskell-hook ()
(add-hook 'before-save-hook 'my-before-save-hook)