racket: fix LD_LIBRARY_PATH

This commit is contained in:
Yucheng Zhang 2018-03-18 16:22:53 +08:00
parent 2e855dc6b0
commit 6016d3703d

View File

@ -74,7 +74,7 @@ stdenv.mkDerivation rec {
postInstall = ''
for p in $(ls $out/bin/) ; do
wrapProgram $out/bin/$p --set LD_LIBRARY_PATH "${LD_LIBRARY_PATH}";
wrapProgram $out/bin/$p --prefix LD_LIBRARY_PATH ":" "${LD_LIBRARY_PATH}";
done
'';