Merge pull request #161877 from BrianHicks/tmux-unicode

tmux: add utf8proc on Darwin
This commit is contained in:
Mario Rodas 2022-02-26 09:15:11 -05:00 committed by GitHub
commit c3d5c36e4c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -6,6 +6,7 @@
, bison
, ncurses
, libevent
, utf8proc
}:
let
@ -49,12 +50,12 @@ stdenv.mkDerivation rec {
buildInputs = [
ncurses
libevent
];
] ++ lib.optionals stdenv.isDarwin [ utf8proc ];
configureFlags = [
"--sysconfdir=/etc"
"--localstatedir=/var"
];
] ++ lib.optionals stdenv.isDarwin [ "--enable-utf8proc" ];
enableParallelBuilding = true;