From c365937690d68aedf22e655e952e16547776e6cb Mon Sep 17 00:00:00 2001 From: Xander Mckay Date: Sat, 2 Nov 2024 15:38:15 -0400 Subject: [PATCH] `nix-shell` support --- shell.nix | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 shell.nix diff --git a/shell.nix b/shell.nix new file mode 100644 index 0000000..f047fa0 --- /dev/null +++ b/shell.nix @@ -0,0 +1,8 @@ +{ pkgs ? import {} }: + pkgs.mkShell { + # nativeBuildInputs is usually what you want -- tools you need to run + nativeBuildInputs = with pkgs.buildPackages; [ + python312 + uv + ]; +} \ No newline at end of file