Skip to content

Commit

Permalink
Update index.md
Browse files Browse the repository at this point in the history
  • Loading branch information
viperML authored Jul 14, 2023
1 parent 9b605d6 commit d72b58c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion content/blog/nix-dev/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -178,9 +178,11 @@ pkgs.mkShell {
];
# Workaround in linux: python downloads ELF's that can't find glibc
# You would see errors like: error while loading shared libraries: name.so: cannot open shared object file: No such file or directory
LD_LIBRARY_PATH = pkgs.lib.makeLibraryPath [
pkgs.stdenv.cc.cc
# Add any missing library needed by a python package
# Add any missing library needed
# You can use the nix-index package to locate them, e.g. nix-locate -w --top-level --at-root /lib/libudev.so.1
];
# Put the venv on the repo, so direnv can access it
Expand Down

0 comments on commit d72b58c

Please sign in to comment.