>I routinely find myself in a situation where some build tool or >installation of software (gcc, pip, a runtime) not via a nix expression) >will fail due to not having zlib available/in scope. What would be a simple >way to prevent this annoyance?
There are NIX_LDFLAGS, NIX_CFLAGS_COMPILE and LD_LIBRARY_PATH variables. Depending on whether linking with gcc/ld, compilation with gcc or running a binary fails, you can set one of them to include corresponding zlib path (lib or include) _______________________________________________ nix-dev mailing list [email protected] http://lists.science.uu.nl/mailman/listinfo/nix-dev
