osuplusplus/nix/shell.nix

23 lines
215 B
Nix
Raw Normal View History

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