mirror of
https://github.com/foo-dogsquared/wiki.git
synced 2025-01-31 04:58:21 +00:00
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
|
||
|
];
|
||
|
}
|