racket: fix gappsWrapperArgs
Otherwise LD_LIBRARY_PATH is unset
This commit is contained in:
parent
2b0efd5c5a
commit
ac1ef106c1
@ -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";
|
||||
|
Loading…
Reference in New Issue
Block a user