From fdf1d5264a06c194752484172ff0fa6eff8a849a Mon Sep 17 00:00:00 2001 From: Weijia Wang <9713184+wegank@users.noreply.github.com> Date: Wed, 20 Sep 2023 10:20:51 +0200 Subject: [PATCH] fusuma: add gnugrep to path --- pkgs/tools/inputmethods/fusuma/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/inputmethods/fusuma/default.nix b/pkgs/tools/inputmethods/fusuma/default.nix index 7ed5bc99f46b..58cbe91e3c57 100644 --- a/pkgs/tools/inputmethods/fusuma/default.nix +++ b/pkgs/tools/inputmethods/fusuma/default.nix @@ -1,4 +1,4 @@ -{ lib, bundlerApp, bundlerUpdateScript, makeWrapper, libinput }: +{ lib, bundlerApp, bundlerUpdateScript, makeWrapper, gnugrep, libinput }: bundlerApp { pname = "fusuma"; @@ -9,7 +9,7 @@ bundlerApp { postBuild = '' wrapProgram "$out/bin/fusuma" \ - --prefix PATH : ${lib.makeBinPath [ libinput ]} + --prefix PATH : ${lib.makeBinPath [ gnugrep libinput ]} ''; passthru.updateScript = bundlerUpdateScript "fusuma";