Files
ant-simulator/shell.nix
2021-04-08 03:16:43 +02:00

18 lines
192 B
Nix

{ pkgs ? import <nixpkgs> {} }:
with pkgs;
mkShell {
nativeBuildInputs = [
gcc
gnumake
cmake
cmake-format
clang-tools
# ccls
];
buildInputs = [
sfml
];
}