feat: added nix shell

This commit is contained in:
Danny Piper 2024-12-28 19:00:28 +00:00
parent 1f58f7e93d
commit 04882a5dd5
No known key found for this signature in database
GPG key ID: 5E365B8F351ACB38

23
shell.nix Normal file
View file

@ -0,0 +1,23 @@
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
nativeBuildInputs = with pkgs.buildPackages; [
# Build tools
cmake
cmake-format
bash
curl
git
# Test
valgrind
gdb
# Compiler
gcc
# Libraries
openssl
libsForQt5.full
protobuf
];
}