From 654a2cd6a4f7c08bd72d8fd9bb3c3576b76405a1 Mon Sep 17 00:00:00 2001 From: Aiden Cline Date: Tue, 9 Dec 2025 00:36:33 -0600 Subject: core: remove unused fzf dependency to address CVE - Eliminates fzf binary dependency that was no longer used after file search overhaul - Removes fzf from Nix package configuration and Arch Linux PKGBUILD dependencies --- nix/opencode.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'nix/opencode.nix') diff --git a/nix/opencode.nix b/nix/opencode.nix index 8c4e9fb57..87b3f17ba 100644 --- a/nix/opencode.nix +++ b/nix/opencode.nix @@ -1,4 +1,4 @@ -{ lib, stdenvNoCC, bun, fzf, ripgrep, makeBinaryWrapper }: +{ lib, stdenvNoCC, bun, ripgrep, makeBinaryWrapper }: args: let scripts = args.scripts; @@ -97,7 +97,7 @@ stdenvNoCC.mkDerivation (finalAttrs: { makeWrapper ${bun}/bin/bun $out/bin/opencode \ --add-flags "run" \ --add-flags "$out/lib/opencode/dist/src/index.js" \ - --prefix PATH : ${lib.makeBinPath [ fzf ripgrep ]} \ + --prefix PATH : ${lib.makeBinPath [ ripgrep ]} \ --argv0 opencode runHook postInstall -- cgit v1.2.3