Files
ant-simulator/shell.nix
2021-04-09 02:02:52 +02:00

19 lines
212 B
Nix

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