Merge pull request #197018 from thled/fix-leftwm

leftwm: fix to also patchelf lefthk-worker
This commit is contained in:
Stanisław Pitucha 2023-03-21 22:23:08 +11:00 committed by GitHub
commit 375bedea79
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -24,7 +24,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
'';