Merge pull request #237365 from msfjarvis/hs/fix-fzf-tmux
This commit is contained in:
commit
b9cdb7a6ce
1 changed files with 4 additions and 0 deletions
|
@ -5,6 +5,7 @@
|
||||||
, writeShellScriptBin
|
, writeShellScriptBin
|
||||||
, runtimeShell
|
, runtimeShell
|
||||||
, installShellFiles
|
, installShellFiles
|
||||||
|
, bc
|
||||||
, ncurses
|
, ncurses
|
||||||
, perl
|
, perl
|
||||||
, glibcLocales
|
, glibcLocales
|
||||||
|
@ -60,6 +61,9 @@ buildGoModule rec {
|
||||||
# Include first args to make sure we're patching the right thing
|
# Include first args to make sure we're patching the right thing
|
||||||
substituteInPlace shell/key-bindings.bash \
|
substituteInPlace shell/key-bindings.bash \
|
||||||
--replace " perl -n " " ${ourPerl}/bin/perl -n "
|
--replace " perl -n " " ${ourPerl}/bin/perl -n "
|
||||||
|
# fzf-tmux depends on bc
|
||||||
|
substituteInPlace bin/fzf-tmux \
|
||||||
|
--replace "bc" "${bc}/bin/bc"
|
||||||
'';
|
'';
|
||||||
|
|
||||||
postInstall = ''
|
postInstall = ''
|
||||||
|
|
Loading…
Reference in a new issue