diff options
| author | Christian Krinitsin <mail@krinitsin.com> | 2025-05-29 13:45:14 +0000 |
|---|---|---|
| committer | Christian Krinitsin <mail@krinitsin.com> | 2025-05-29 13:45:14 +0000 |
| commit | ad77852392240639b9db7b18f8566bd458a20ade (patch) | |
| tree | cfccd8d720d8020ef2895cc8914dcbf216dd2ec1 /classification/shell.nix | |
| parent | 073858f938a9ca4f93ef4eebf69b2b560aa64aa6 (diff) | |
| download | qemu-analysis-ad77852392240639b9db7b18f8566bd458a20ade.tar.gz qemu-analysis-ad77852392240639b9db7b18f8566bd458a20ade.zip | |
add classifier
Diffstat (limited to 'classification/shell.nix')
| -rw-r--r-- | classification/shell.nix | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/classification/shell.nix b/classification/shell.nix new file mode 100644 index 000000000..bab1e7d2a --- /dev/null +++ b/classification/shell.nix @@ -0,0 +1,13 @@ +{ pkgs ? (import <nixpkgs> {}).pkgs }: +with pkgs; +mkShell { + buildInputs = [ + python312Packages.numpy + python312Packages.transformers + python312Packages.torch + ]; + shellHook = '' + # fixes libstdc++ issues and libgl.so issues + LD_LIBRARY_PATH=${stdenv.cc.cc.lib}/lib/:/run/opengl-driver/lib/ + ''; +} |