From 41bb8eb30644c4a69156e914fb888916c88f6e81 Mon Sep 17 00:00:00 2001 From: Thomas Le Duc Date: Fri, 21 Oct 2022 06:58:32 +0200 Subject: [PATCH] leftwm: fix to also patchelf lefthk-worker --- pkgs/applications/window-managers/leftwm/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 '';