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
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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