Initial commit of mtgonline project

This commit is contained in:
2026-07-18 04:57:40 +00:00
commit 86c12376f8
1870 changed files with 547994 additions and 0 deletions
+32
View File
@@ -0,0 +1,32 @@
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
nativeBuildInputs = with pkgs.buildPackages; [
# Build tools
cmake
cmake-format
ninja
bash
curl
git
qtcreator
# Debug / Test
valgrind
gdb
clang-tools
# Compiler
gcc
# Libraries
openssl
protobuf
qt6.qtbase
qt6.full
qt6.wrapQtAppsHook
];
# Make debug builds work
# https://github.com/NixOS/nixpkgs/issues/18995
hardeningDisable = [ "fortify" ];
}