From 7679546e305d8b0a8f85c9e59ae658238d9b7247 Mon Sep 17 00:00:00 2001 From: Danny Piper Date: Sat, 28 Dec 2024 23:52:57 +0000 Subject: [PATCH] Add Nix shell (#5362) --- shell.nix | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 shell.nix 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 + ]; + }