diff options
| author | Stanisław Pitucha <git@viraptor.info> | 2023-03-21 22:31:08 +1100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-03-21 22:31:08 +1100 |
| commit | 739d5bd6a4ea837dda5c0c8f8543930c0619a790 (patch) | |
| tree | b70cefdc9da7abe806a8ff5379509eefcc76f447 | |
| parent | Merge pull request #222313 from drupol/php/bump-march-2023-backport (diff) | |
| parent | leftwm: fix to also patchelf lefthk-worker (diff) | |
| download | nixpkgs-739d5bd6a4ea837dda5c0c8f8543930c0619a790.tar.gz | |
Merge pull request #222338 from NixOS/backport-197018-to-release-22.11
[Backport release-22.11] leftwm: fix to also patchelf lefthk-worker
| -rw-r--r-- | pkgs/applications/window-managers/leftwm/default.nix | 2 |
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 ''; |
