osuplusplus/nix/shell.nix

22 lines
215 B
Nix

{
mkShell,
gcc,
gnumake,
clang-tools,
sfml,
...
}:
mkShell {
name = "osu++";
nativeBuildInputs = [
gcc
gnumake
# for clang-format
clang-tools
];
buildInputs = [
sfml
];
}