diff --git a/shell.nix b/shell.nix new file mode 100644 index 000000000..5315170d0 --- /dev/null +++ b/shell.nix @@ -0,0 +1,26 @@ +{ pkgs ? import {} }: + pkgs.mkShell { + nativeBuildInputs = with pkgs.buildPackages; [ + # Build tools + cmake + cmake-format + bash + curl + git + qtcreator + + # Debug / Test + valgrind + gdb + + # Compiler + gcc + + # Libraries + openssl + protobuf + qt6.qtbase + qt6.full + qt6.wrapQtAppsHook + ]; + }