summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Le Duc <dev@tleduc.de>2022-10-21 06:58:32 +0200
committergithub-actions[bot] <github-actions[bot]@users.noreply.github.com>2023-03-21 11:23:36 +0000
commit5484fa83730ea80f7ade8c0589777d52ce860b47 (patch)
treeb70cefdc9da7abe806a8ff5379509eefcc76f447
parentMerge pull request #222313 from drupol/php/bump-march-2023-backport (diff)
downloadnixpkgs-origin/backport-197018-to-release-22.11.tar.gz
leftwm: fix to also patchelf lefthk-workerorigin/backport-197018-to-release-22.11
(cherry picked from commit 41bb8eb30644c4a69156e914fb888916c88f6e81)
-rw-r--r--pkgs/applications/window-managers/leftwm/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/applications/window-managers/leftwm/default.nix b/pkgs/applications/window-managers/leftwm/default.nix
index fe3e46f7b47a..e780e74e5db8 100644
--- a/pkgs/applications/window-managers/leftwm/default.nix
+++ b/pkgs/applications/window-managers/leftwm/default.nix
@@ -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
'';