Cockatrice/shell.nix
2024-12-28 19:00:28 +00:00

23 lines
335 B
Nix

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