From 7086fb70f62b4ac0adbb684cafbf905ab1363d25 Mon Sep 17 00:00:00 2001 From: sora-ext Date: Tue, 9 Jun 2026 15:20:03 +0200 Subject: [PATCH] Update shells/devsh/default.nix --- shells/devsh/default.nix | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/shells/devsh/default.nix b/shells/devsh/default.nix index b75d148..261b95c 100644 --- a/shells/devsh/default.nix +++ b/shells/devsh/default.nix @@ -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