From 43b64e6ca393cf0f057696cc3057065c8602eb91 Mon Sep 17 00:00:00 2001 From: k Date: Wed, 12 Nov 2025 12:15:41 -0500 Subject: [PATCH] add shell.nix --- 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..d74d11c --- /dev/null +++ b/shell.nix @@ -0,0 +1,8 @@ +{pkgs ? import {}}: +with pkgs; + mkShell rec { + packages = [python3 jupyter-all python3Packages.librosa python3Packages.tinygrad python3Packages.numpy python3Packages.mlflow python3Packages.tqdm python3Packages.sounddevice]; + nativeBuildInputs = []; + buildInputs = []; + LD_LIBRARY_PATH = lib.makeLibraryPath buildInputs; + }