znc: add option to enable unicode support

This commit is contained in:
Izorkin 2018-10-18 22:06:23 +03:00
parent d408063209
commit 503318127a

View File

@ -3,6 +3,7 @@
, withPython ? false, python3
, withTcl ? false, tcl
, withCyrus ? true, cyrus_sasl
, withUnicode ? true, icu
}:
with stdenv.lib;
@ -22,7 +23,8 @@ stdenv.mkDerivation rec {
++ optional withPerl perl
++ optional withPython python3
++ optional withTcl tcl
++ optional withCyrus cyrus_sasl;
++ optional withCyrus cyrus_sasl
++ optional withUnicode icu;
configureFlags = [
(stdenv.lib.enableFeature withPerl "perl")