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 + ]; + }