add shell.nix

This commit is contained in:
k 2025-11-12 12:15:41 -05:00
parent 6e0b3882bc
commit 43b64e6ca3

8
shell.nix Normal file
View File

@ -0,0 +1,8 @@
{pkgs ? import <nixpkgs> {}}:
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;
}