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