Merge pull request #48678 from Izorkin/znc

znc: add option to enable unicode support
This commit is contained in:
Silvan Mosberger 2018-10-18 22:19:42 +02:00 committed by GitHub
commit 810da21d6b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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")