From 1d5d07c2310be18f6c74955bc5fec7bc97894198 Mon Sep 17 00:00:00 2001 From: Konrad Malik Date: Sat, 2 Aug 2025 22:04:05 +0200 Subject: [PATCH] extrakto: remove unnecessary deps for darwin xclip and wl-clipboard are not needed for darwin, but they do break for darwin, especially the latter --- pkgs/misc/tmux-plugins/default.nix | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/pkgs/misc/tmux-plugins/default.nix b/pkgs/misc/tmux-plugins/default.nix index 1d0670a08929..418bfd083325 100644 --- a/pkgs/misc/tmux-plugins/default.nix +++ b/pkgs/misc/tmux-plugins/default.nix @@ -275,11 +275,13 @@ in wrapProgram $target/scripts/open.sh \ --prefix PATH : ${ with pkgs; - lib.makeBinPath [ - fzf - xclip - wl-clipboard - ] + lib.makeBinPath ( + [ fzf ] + ++ lib.optionals stdenv.hostPlatform.isLinux [ + xclip + wl-clipboard + ] + ) } ''; meta = {