extrakto: remove unnecessary deps for darwin (#430458)

This commit is contained in:
Pol Dellaiera
2025-08-02 23:40:35 +02:00
committed by GitHub
+7 -5
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 = {