From fac6649189b5746f01ee4ae96a531f0d3fabdb7f Mon Sep 17 00:00:00 2001 From: Daniel Siepmann Date: Tue, 26 Mar 2024 08:20:09 +0100 Subject: [PATCH] INIT --- .gitignore | 1 + shell.nix | 11 +++++++++++ 2 files changed, 12 insertions(+) create mode 100644 .gitignore create mode 100644 shell.nix diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..6e68499 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/docs/ diff --git a/shell.nix b/shell.nix new file mode 100644 index 0000000..ed5cf4d --- /dev/null +++ b/shell.nix @@ -0,0 +1,11 @@ +{ + pkgs ? import { } +}: + +pkgs.mkShellNoCC { + name = "Godot"; + buildInputs = [ + pkgs.godot_4 + # C# will be available with https://github.com/NixOS/nixpkgs/pull/285941/ + ]; +}