12 lines
193 B
Nix
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/
|
||
|
];
|
||
|
}
|