This commit is contained in:
Daniel Siepmann 2024-03-26 08:20:09 +01:00
commit fac6649189
Signed by: Daniel Siepmann
GPG key ID: 33D6629915560EF4
2 changed files with 12 additions and 0 deletions

1
.gitignore vendored Normal file
View file

@ -0,0 +1 @@
/docs/

11
shell.nix Normal file
View file

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