Update shells/devsh/default.nix

This commit is contained in:
2026-06-09 15:20:03 +02:00
parent 37ffd00d0b
commit 7086fb70f6

View File

@@ -1,9 +1,9 @@
{ pkgs, ... }:
pkgs.mkShell {
buildInputs = with pkgs; [
buildInputs = (with pkgs; [
#LANG & COMPILER
gcc
(with llvmPackages; [ libcxxClang ])
gnumake
cmake
go
@@ -16,7 +16,7 @@ pkgs.mkShell {
yarn-berry
crystal
shards
(with python313Packages; [ pip pandas numpy matplotlib typer pillow reportlab python-barcode pypdf markdown requests ])
scala
sbt
cargo
@@ -36,7 +36,12 @@ pkgs.mkShell {
docker-compose
#CUSTOM (custom...)
];
]) ++ (with pkgs.llvmPackages; [
libcxxClang
]) ++ (with pkgs.python313Packages; [
pip pandas numpy matplotlib typer pillow reportlab python-barcode pypdf markdown requests
])
;
shellHook = ''
export SHELLENVTYPE="DEV"
export HTTP_PORT=8080