Merge pull request #256273 from wegank/fusuma-gnugrep

fusuma: add gnugrep to path
This commit is contained in:
Oleksii Filonenko 2023-09-20 12:27:07 +03:00 committed by GitHub
commit 1c37330916
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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";