@hackage robin0.1.0.0
A build daemon for Haskell development
Categories
License
GPL-3.0-only
Maintainer
robin@karlv.net
Links
Versions
- 0.1.0.0 Thu, 10 Sep 2015
Robin
Robin is a build daemon for Haskell development.
Usage
robin (start | stop | build | watch | debug)
This daemon rebuilds a cabalized Haskell project whenever a source file changes. It runs one of the following commands:
./robin.sh
, if that file exists, orstack build
, ifstack.yaml
exists, orcabal build
, otherwise.
Commands
- start - if the current project doesn't already have a daemon, start one
- stop - stop the daemon for the current project
- build - show the output of the last build, or if a build is in progress, wait for completion and then show its output
- watch - take over the console, always showing the latest build output
- debug - like start, but doesn't daemonize
The default command is build.
Note: the current project is assumed to be the root of the git working copy which contains the current directory. definition.
Vim integration
echo 'setlocal makeprg=robin' >> ~/.vim/ftplugin/haskell.vim