mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2025-12-12 15:49:28 -08:00
Add Nix shell (#5362)
This commit is contained in:
26
shell.nix
Normal file
26
shell.nix
Normal 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
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user