RatChess/shell.nix

14 lines
268 B
Nix

{pkgs ? import <nixpkgs> {}}:
with pkgs;
mkShell rec {
packages = [gdb clang-tools uchess cutechess];
nativeBuildInputs = [
pkg-config
gcc
gnumake
];
buildInputs = [
];
LD_LIBRARY_PATH = lib.makeLibraryPath buildInputs;
}