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