extrakto: remove unnecessary deps for darwin

xclip and wl-clipboard are not needed for darwin, but they do break for darwin, especially the latter
This commit is contained in:
Konrad Malik 2025-08-02 22:04:05 +02:00
parent deafde8025
commit 1d5d07c231
No known key found for this signature in database

View File

@ -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 = {