mirror of
https://github.com/foo-dogsquared/wiki.git
synced 2025-01-31 01:57:54 +00:00
c4dfa8d045
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).
13 lines
213 B
Nix
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
|
|
];
|
|
}
|