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
@@ -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
'';