Update shells/devsh/default.nix
This commit is contained in:
@@ -1,9 +1,9 @@
|
|||||||
{ pkgs, ... }:
|
{ pkgs, ... }:
|
||||||
pkgs.mkShell {
|
pkgs.mkShell {
|
||||||
buildInputs = with pkgs; [
|
buildInputs = (with pkgs; [
|
||||||
#LANG & COMPILER
|
#LANG & COMPILER
|
||||||
gcc
|
gcc
|
||||||
(with llvmPackages; [ libcxxClang ])
|
|
||||||
gnumake
|
gnumake
|
||||||
cmake
|
cmake
|
||||||
go
|
go
|
||||||
@@ -16,7 +16,7 @@ pkgs.mkShell {
|
|||||||
yarn-berry
|
yarn-berry
|
||||||
crystal
|
crystal
|
||||||
shards
|
shards
|
||||||
(with python313Packages; [ pip pandas numpy matplotlib typer pillow reportlab python-barcode pypdf markdown requests ])
|
|
||||||
scala
|
scala
|
||||||
sbt
|
sbt
|
||||||
cargo
|
cargo
|
||||||
@@ -36,7 +36,12 @@ pkgs.mkShell {
|
|||||||
docker-compose
|
docker-compose
|
||||||
|
|
||||||
#CUSTOM (custom...)
|
#CUSTOM (custom...)
|
||||||
];
|
]) ++ (with pkgs.llvmPackages; [
|
||||||
|
libcxxClang
|
||||||
|
]) ++ (with pkgs.python313Packages; [
|
||||||
|
pip pandas numpy matplotlib typer pillow reportlab python-barcode pypdf markdown requests
|
||||||
|
])
|
||||||
|
;
|
||||||
shellHook = ''
|
shellHook = ''
|
||||||
export SHELLENVTYPE="DEV"
|
export SHELLENVTYPE="DEV"
|
||||||
export HTTP_PORT=8080
|
export HTTP_PORT=8080
|
||||||
|
|||||||
Reference in New Issue
Block a user