Skip to content

Instantly share code, notes, and snippets.

@aurora
Last active March 19, 2016 19:15
Show Gist options
  • Save aurora/7995a5a37a90a209fa70 to your computer and use it in GitHub Desktop.
Save aurora/7995a5a37a90a209fa70 to your computer and use it in GitHub Desktop.
Installer for nim development version
#!/usr/bin/env bash
tmpdir=$(mktemp -t /tmp)
cd $tmpdir
git clone -b devel git://github.com/nim-lang/Nim.git
cd Nim
git clone -b devel --depth 1 git://github.com/nim-lang/csources
cd csources && sh build.sh
cd ..
bin/nim c koch
./koch boot -d:release
sudo ./koch install /usr/local/bin
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment