wiki/shell.nix
2021-04-19 22:50:00 +08:00

15 lines
239 B
Nix

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