Nimrod-env is a Nimrod bootstrapper I wrote today. I used Nimrod in my part of a team project, but installing Nimrod compiler is too hard. Also, I wanted virtualenv style of dependency management.
If you have gcc with nimrod-env you can do the following and get working Nimrod compiler.
curl -f https://zielm.com/nimrod/env.sh > env.sh && chmod +x env.sh
./env.sh 0.9.3-pre-891c7f11
.nimrodenv/bin/nimrod c nameofprogramiwanttocompile
This script doesn't perform any magic - it just automates ./koch csource on the server side and ./build.sh on the client side. In future I'd also like to add local babel support.
I've added babel support and moved repository to other domain (https://atomshare.net/nimrod/index.html ):
Usage:
curl -f https://atomshare.net/nimrod/env.sh > env.sh && chmod +x env.sh
./env.sh
.nimrodenv/bin/nimrod c nameofprogramiwanttocompile
.nimrodenv/bin/babel install nameofpackageiwanttoinstall
Babel packages are installed in .nimrodenv/pkgs.