t14_legacy_config/home/shenvs/octave.nix

19 lines
296 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-11-29 18:33:48 +01:00
(pkgs.unstable.octave.withPackages (packages: with packages; [
2022-05-09 00:45:37 +02:00
symbolic
2022-11-29 18:33:48 +01:00
signal
2022-05-09 00:45:37 +02:00
]))
(python39.withPackages (packages: with packages; [
2022-11-29 18:33:48 +01:00
numpy
pipenv
scipy
sympy
matplotlib
2022-05-09 00:45:37 +02:00
]))
2022-04-15 06:45:15 +02:00
];
}