t14_legacy_config/home/shenvs/octave.nix

18 lines
250 B
Nix
Raw Normal View History

2022-08-26 05:43:18 +02:00
{pkgs, ...}:
{
2022-08-30 07:10:29 +02:00
static = true;
2022-08-26 05:43:18 +02:00
packages = with pkgs; [
2022-05-09 00:45:37 +02:00
(octave.withPackages (packages: with packages; [
symbolic
]))
2022-05-04 02:35:10 +02:00
pipenv
2022-05-09 00:45:37 +02:00
(python39.withPackages (packages: with packages; [
numpy
scipy
sympy
matplotlib
2022-05-09 00:45:37 +02:00
]))
2022-04-15 06:45:15 +02:00
];
}