leftwm: fix to also patchelf lefthk-worker

This commit is contained in:
Thomas Le Duc 2022-10-21 06:58:32 +02:00
parent 328c892e1b
commit 41bb8eb306

View File

@ -20,7 +20,7 @@ rustPlatform.buildRustPackage rec {
buildInputs = rpathLibs;
postInstall = ''
for p in $out/bin/leftwm*; do
for p in $out/bin/left*; do
patchelf --set-rpath "${lib.makeLibraryPath rpathLibs}" $p
done
'';