wiki/shell.nix
2021-05-07 12:11:25 +08:00

16 lines
250 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
recoll
];
}