Files
nixconfig/shells/devsh/default.nix
2026-01-20 23:03:12 +01:00

49 lines
744 B
Nix

{ pkgs, ... }:
pkgs.mkShell {
buildInputs = with pkgs; [
#LANG & COMPILER
gcc
(with llvmPackages; [ libcxxClang ])
gnumake
cmake
go
gotools
jdk
gradle
maven
kotlin
nodejs
yarn-berry
crystal
shards
python35
virtualenv
(with python315Packages; [ pip pandas numpy matplotlib typer Pillow reportlab python-barcode pypdf markdown requests pdf417 ])
pipenv
scala
sbt
cargo
#LIBS
openssl
pcre
pcre2
ncurses
patchelf
zlib
#DBG & TOOLS
gdbgui
valgrind
sox
docker-compose
#CUSTOM (custom...)
];
shellHook = ''
export SHELLENVTYPE="DEV"
export HTTP_PORT=8080
export HTTP_ADDR="0.0.0.0"
'';
}