thunderbird: use lib.getLib systemd instead of systemd.lib
This will pick the `lib` output if it exists, otherwise default to `out`.
This commit is contained in:
parent
24126d3cab
commit
dbb5fbfb15
2 changed files with 2 additions and 2 deletions
|
@ -310,7 +310,7 @@ stdenv.mkDerivation rec {
|
||||||
# package a Thunderbird >=71.0 since XUL shouldn't be anymore (in use)?
|
# package a Thunderbird >=71.0 since XUL shouldn't be anymore (in use)?
|
||||||
postFixup = ''
|
postFixup = ''
|
||||||
local xul="$out/lib/thunderbird/libxul.so"
|
local xul="$out/lib/thunderbird/libxul.so"
|
||||||
patchelf --set-rpath "${libnotify}/lib:${systemd.lib}/lib:$(patchelf --print-rpath $xul)" $xul
|
patchelf --set-rpath "${libnotify}/lib:${lib.getLib systemd}/lib:$(patchelf --print-rpath $xul)" $xul
|
||||||
'';
|
'';
|
||||||
|
|
||||||
doInstallCheck = true;
|
doInstallCheck = true;
|
||||||
|
|
|
@ -304,7 +304,7 @@ stdenv.mkDerivation rec {
|
||||||
# package a Thunderbird >=71.0 since XUL shouldn't be anymore (in use)?
|
# package a Thunderbird >=71.0 since XUL shouldn't be anymore (in use)?
|
||||||
postFixup = ''
|
postFixup = ''
|
||||||
local xul="$out/lib/thunderbird/libxul.so"
|
local xul="$out/lib/thunderbird/libxul.so"
|
||||||
patchelf --set-rpath "${libnotify}/lib:${systemd.lib}/lib:$(patchelf --print-rpath $xul)" $xul
|
patchelf --set-rpath "${libnotify}/lib:${lib.getLib systemd}/lib:$(patchelf --print-rpath $xul)" $xul
|
||||||
'';
|
'';
|
||||||
|
|
||||||
doInstallCheck = true;
|
doInstallCheck = true;
|
||||||
|
|
Loading…
Reference in a new issue