fastinahurry/shell.nix
2025-07-27 21:47:49 -06:00

19 lines
237 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
];
}