fastinahurry/shell.nix
xbazzi b2ca2d9cc2
Some checks failed
Simple Mirror to GitHub / mirror (push) Failing after 7s
Fix data races
2025-08-17 15:34:13 -06:00

32 lines
554 B
Nix

let
config = {
allowUnfree = true;
# allowUnfreePredicate = pkg: builtins.elem (builtins.parseDrvName pkg.name).name [
# "claude-code"
# ];
};
pkgs = import <nixpkgs> { inherit config; };
in
pkgs.mkShell {
name = "fastinahurry-dev";
buildInputs = with pkgs; [
openssl
gcc
cmake
gdb
pkg-config
boost
valgrind
zsh
grpc
protobuf
nlohmann_json
doxygen
graphviz
];
# nixpkgs.config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) [
# "claude-code"
# ];
}