Update devshell.nix

This commit is contained in:
Keisuke Hirata 2026-04-05 04:54:07 +09:00
parent ed1db41319
commit 2d7e6bd5d6

View File

@ -1,9 +1,16 @@
{ pkgs }:
pkgs.mkShell {
buildInputs = with pkgs; [
packages = with pkgs; [
nixfmt
deno
git
rustc
cargo
];
buildInputs = with pkgs; [
pkg-config
openssl
];
shellHook = ''
echo "dev-shell-loaded"
'';