mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-07-19 08:52:15 -07:00
feat: added nix shell
This commit is contained in:
parent
1f58f7e93d
commit
04882a5dd5
1 changed files with 23 additions and 0 deletions
23
shell.nix
Normal file
23
shell.nix
Normal 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
|
||||||
|
];
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue