From 04882a5dd56d3b01a8b5a27b08839962c1449427 Mon Sep 17 00:00:00 2001 From: Danny Piper Date: Sat, 28 Dec 2024 19:00:28 +0000 Subject: [PATCH] feat: added nix shell --- shell.nix | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 shell.nix diff --git a/shell.nix b/shell.nix new file mode 100644 index 000000000..f97503027 --- /dev/null +++ b/shell.nix @@ -0,0 +1,23 @@ +{ pkgs ? import {} }: + pkgs.mkShell { + nativeBuildInputs = with pkgs.buildPackages; [ + # Build tools + cmake + cmake-format + bash + curl + git + + # Test + valgrind + gdb + + # Compiler + gcc + + # Libraries + openssl + libsForQt5.full + protobuf + ]; + }