Merge pull request #48678 from Izorkin/znc
znc: add option to enable unicode support
This commit is contained in:
commit
810da21d6b
@ -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")
|
||||||
|
Loading…
Reference in New Issue
Block a user