From 3e7f672b35f4a2196be8f27d35ef527eec79179d Mon Sep 17 00:00:00 2001 From: "Claudius \"keldu\" Holeksa" Date: Wed, 11 Feb 2026 17:28:23 +0100 Subject: Too lazy to ammend last commit. Moving to particle based HLBM and others. Also implemented rotational movement properly now --- shell.nix | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 shell.nix (limited to 'shell.nix') diff --git a/shell.nix b/shell.nix new file mode 100644 index 0000000..0c22e94 --- /dev/null +++ b/shell.nix @@ -0,0 +1,18 @@ +{ pkgs ? import {} +, ... +}: + +pkgs.mkShell { + buildInputs = [ + pkgs.scons + pkgs.clang + pkgs.clang-tools + ]; + + shellHook = '' + if [ ! -f compile_commands.json ]; then + printf "Generating compile_commands.json...\n" + scons cdb + fi + ''; +} -- cgit v1.2.3