Add Nix shell (#5362)

This commit is contained in:
Danny Piper
2024-12-28 23:52:57 +00:00
committed by GitHub
parent 45b11dc984
commit 7679546e30

26
shell.nix Normal file
View File

@@ -0,0 +1,26 @@
{ pkgs ? import <nixpkgs> {} }:
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
];
}