osuplusplus/nix/shell.nix

16 lines
187 B
Nix
Raw Normal View History

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