Is it possible to prevent the contents of lib/
in a derivation from getting installed in the active user-environment
? The package in question has an internal lib/ folder which should not be exposed to users, nor clutter the environment. As far as I have been able to discern, the links in user-environment
are updated from within the nix-env binary.
Preventing nix-env -i from installing $out/lib in the user-environment
129 views Asked by Jonas Juselius At
1
I found a solution. Instead of installing in $out, one can install in $out/pkg, and then create the appropriate links in $out. This prevents nix-env from finding
lib/
(amongst other things).