Update shells/devsh/default.nix
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user