lol

tmux: disable utf8proc on 32bit platforms

Currently the build fails with incompatible pointer types. We could
patch around this, but it doesn't seem worth it. Technically, some 32bit
platforms (other than i686-linux) could define their wchar_t in a way
that is compatible with utf8proc, but we don't have great test coverage,
so I'm being generous here with the check.

+2 -1
+2 -1
pkgs/by-name/tm/tmux/package.nix
··· 10 10 runCommand, 11 11 withSystemd ? lib.meta.availableOn stdenv.hostPlatform systemd, 12 12 systemd, 13 - withUtf8proc ? true, 13 + # broken on i686-linux https://github.com/tmux/tmux/issues/4597 14 + withUtf8proc ? !(stdenv.hostPlatform.is32bit), 14 15 utf8proc, # gets Unicode updates faster than glibc 15 16 withUtempter ? stdenv.hostPlatform.isLinux && !stdenv.hostPlatform.isMusl, 16 17 libutempter,