nixconfig/shells/devsh/default.nix

48 lines
646 B
Nix
Raw Normal View History

2023-11-04 02:28:27 +01:00
{ 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
python311Full
virtualenv
(with python311Packages; [ pip ])
pipenv
scala
sbt
#LIBS
openssl
pcre
pcre2
ncurses
patchelf
zlib
#DBG & TOOLS
gdbgui
valgrind
sox
docker-compose
#CUSTOM (custom...)
];
shellHook = ''
2023-11-25 14:40:38 +01:00
export SHELLENVTYPE="DEV"
2023-11-04 02:28:27 +01:00
export HTTP_PORT=8080
export HTTP_ADDR="0.0.0.0"
'';
}