wiki/shell.nix
Gabriel Arazas c4dfa8d045 Add documentation and reproducible environment
The documentation is written in Asciidoctor because I just want to avoid
org-roam recognizing it. ;p
As for the reproducible environment, it uses Nix (no surprise).
2021-04-06 23:10:04 +08:00

13 lines
213 B
Nix

{ pkgs ? import (fetchTarball "http://nixos.org/channels/nixos-20.09/nixexprs.tar.xz") {} }:
pkgs.mkShell {
buildInputs = with pkgs; [
gnumake
gnuplot
octaveFull
python3
racket
R
];
}