Unverified Commit 375bedea authored by Stanisław Pitucha's avatar Stanisław Pitucha Committed by GitHub
Browse files

Merge pull request #197018 from thled/fix-leftwm

leftwm: fix to also patchelf lefthk-worker
parents 7bc3a9d2 41bb8eb3
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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
  '';