migra a version nueva de shenvs

This commit is contained in:
Fabián Montero 2022-08-25 21:43:18 -06:00
parent 177659997f
commit 8f48524a76
13 changed files with 61 additions and 80 deletions

13
home/shenvs/c.nix Normal file
View file

@ -0,0 +1,13 @@
{pkgs, ...} :
{
packages = with pkgs; [
binutils
gdb
gcc-arm-embedded
gnumake
lldb
openocd
qemu
valgrind
];
}

15
home/shenvs/octave.nix Normal file
View file

@ -0,0 +1,15 @@
{pkgs, ...}:
{
packages = with pkgs; [
(octave.withPackages (packages: with packages; [
symbolic
]))
pipenv
(python39.withPackages (packages: with packages; [
numpy
scipy
sympy
matplotlib
]))
];
}

12
home/shenvs/proba.nix Normal file
View file

@ -0,0 +1,12 @@
{pkgs, ...}:
{
packages = with pkgs; [
pipenv
(python310.withPackages ( packages: with packages; [
matplotlib
numpy
pandas
scipy
]))
];
}

9
home/shenvs/tcrb.nix Normal file
View file

@ -0,0 +1,9 @@
{pkgs, ... }:
{
packages = with pkgs; [
pipenv
(python310.withPackages ( packages: with packages; [
setuptools
]))
];
}