Installing Goeland on NixOS Latest
Goeland is an open-source implementation of a SICP-inspired interpreter for Scheme programming language. In this tutorial, we will be covering the steps to install Goeland on NixOS Latest.
Prerequisites
We assume that you have a running instance of NixOS Latest and have administrative privileges. You should also have a basic understanding of the command line interface.
Steps to Install Goeland on NixOS Latest
Open up the terminal window on your NixOS Latest machine.
Install Git by running the following command in the terminal.
$ sudo nix-env -i gitClone the latest version of Goeland from its Git repository by executing the following command.
$ git clone https://github.com/slurdge/goeland.gitNavigate to the Goeland directory that was just cloned.
$ cd goelandInstall Goeland's dependencies with Nix by executing the following command.
$ nix-shellOnce the dependencies finish installing, build Goeland by executing the following:
$ makeAfter the Goeland build is complete, you can start the interpreter. Run the following command:
$ ./goelandThe
goelandexecutable should now launch.You can now test Goeland's functionality by typing any Scheme commands.
Conclusion
In this tutorial, we have covered the steps to install Goeland on NixOS Latest. You can now start exploring the features that Goeland has to offer. Happy coding!