godot/shell.nix

12 lines
193 B
Nix
Raw Permalink Normal View History

2024-03-26 08:20:09 +01:00
{
pkgs ? import <nixpkgs> { }
}:
pkgs.mkShellNoCC {
name = "Godot";
buildInputs = [
pkgs.godot_4
# C# will be available with https://github.com/NixOS/nixpkgs/pull/285941/
];
}