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