mop: fix build on bash-5

After 33518fcb453382 "stdenv/setup.sh: fix read -N 0 for bash 5"
build started failing as:

consumeEntire(): ERROR: Input null bytes, won't process

Let's avoid running substituteInPlace on arbitrary binary files.

authored by

Sergei Trofimovich and committed by
Raphael Megzari
383b3b36 bd2cc001

+1 -1
+1 -1
pkgs/applications/misc/mop/default.nix
··· 9 9 goDeps = ./deps.nix; 10 10 11 11 preConfigure = '' 12 - for i in $(find . -type f);do 12 + for i in *.go **/*.go; do 13 13 substituteInPlace $i --replace michaeldv/termbox-go nsf/termbox-go 14 14 done 15 15 substituteInPlace Makefile --replace mop/cmd mop/mop