fastinahurry/shell.nix
2025-08-16 20:32:40 -06:00

22 lines
278 B
Nix

{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
name = "fastinahurry-dev";
buildInputs = with pkgs; [
openssl
gcc
cmake
gdb
pkg-config
boost
valgrind
zsh
grpc
protobuf
nlohmann_json
doxygen
graphviz
claude-code
];
}