racket: fix gappsWrapperArgs

Otherwise LD_LIBRARY_PATH is unset
This commit is contained in:
Mario Rodas 2019-01-20 18:54:15 -05:00
parent 2b0efd5c5a
commit ac1ef106c1
No known key found for this signature in database
GPG Key ID: 325649BCA6D53027

View File

@ -73,7 +73,7 @@ stdenv.mkDerivation rec {
mkdir src/build
cd src/build
gappsWrapperArgs+=("--prefix" "LD_LIBRARY_PATH" ":" $LD_LIBRARY_PATH)
gappsWrapperArgs+=("--prefix" "LD_LIBRARY_PATH" ":" ${LD_LIBRARY_PATH})
'';
shared = if stdenv.isDarwin then "dylib" else "shared";