mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-04-27 07:48:01 -07:00
Add Nix shell (#5362)
This commit is contained in:
parent
45b11dc984
commit
7679546e30
1 changed files with 26 additions and 0 deletions
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
|
||||
];
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue