forked from mirrors/nixpkgs
fish: do not use internal wcwidth
This is important when typing characters such as ⚡(U+26A1 HIGH VOLTAGE SIGN), otherwise fish computes a different character width than the terminal. See https://github.com/fish-shell/fish-shell/pull/4816
This commit is contained in:
parent
bd12f74827
commit
68076b7d49
|
@ -102,7 +102,7 @@ let
|
||||||
|
|
||||||
nativeBuildInputs = [ cmake ];
|
nativeBuildInputs = [ cmake ];
|
||||||
buildInputs = [ ncurses libiconv pcre2 ];
|
buildInputs = [ ncurses libiconv pcre2 ];
|
||||||
configureFlags = [ "--without-included-pcre2" ];
|
cmakeFlags = [ "-DINTERNAL_WCWIDTH=OFF" ];
|
||||||
|
|
||||||
preConfigure = ''
|
preConfigure = ''
|
||||||
patchShebangs ./build_tools/git_version_gen.sh
|
patchShebangs ./build_tools/git_version_gen.sh
|
||||||
|
|
Loading…
Reference in a new issue