godot/shell.nix
2024-03-26 09:14:25 +01:00

12 lines
193 B
Nix

{
pkgs ? import <nixpkgs> { }
}:
pkgs.mkShellNoCC {
name = "Godot";
buildInputs = [
pkgs.godot_4
# C# will be available with https://github.com/NixOS/nixpkgs/pull/285941/
];
}