osuplusplus/nix/shell.nix

25 lines
236 B
Nix
Raw Normal View History

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