2014-02-10 03:47:20 +00:00
|
|
|
{ stdenv, fetchurl, openssl, pkgconfig
|
2013-06-06 21:08:24 +00:00
|
|
|
, withPerl ? false, perl
|
|
|
|
, withPython ? false, python3
|
|
|
|
, withTcl ? false, tcl
|
|
|
|
, withCyrus ? true, cyrus_sasl
|
2018-10-18 19:06:23 +00:00
|
|
|
, withUnicode ? true, icu
|
2018-10-27 20:50:06 +00:00
|
|
|
, withZlib ? true, zlib
|
|
|
|
, withIPv6 ? true
|
|
|
|
, withDebug ? false
|
2013-06-06 21:08:24 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
with stdenv.lib;
|
2017-03-07 00:04:31 +00:00
|
|
|
|
2013-06-06 21:08:24 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2017-03-07 00:04:31 +00:00
|
|
|
name = "znc-${version}";
|
2018-07-21 15:09:01 +00:00
|
|
|
version = "1.7.1";
|
2014-02-10 03:47:20 +00:00
|
|
|
|
2013-06-06 21:08:24 +00:00
|
|
|
src = fetchurl {
|
2018-06-28 18:43:35 +00:00
|
|
|
url = "https://znc.in/releases/archive/${name}.tar.gz";
|
2018-07-21 15:09:01 +00:00
|
|
|
sha256 = "1i1r1lh9q2mr1bg520zrvrlwhrhy6wibrin78wjxq1gab1qymks4";
|
2013-06-06 21:08:24 +00:00
|
|
|
};
|
|
|
|
|
2017-03-16 20:03:15 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
|
|
|
|
buildInputs = [ openssl ]
|
2013-06-06 21:08:24 +00:00
|
|
|
++ optional withPerl perl
|
|
|
|
++ optional withPython python3
|
|
|
|
++ optional withTcl tcl
|
2018-10-18 19:06:23 +00:00
|
|
|
++ optional withCyrus cyrus_sasl
|
2018-10-27 20:50:06 +00:00
|
|
|
++ optional withUnicode icu
|
|
|
|
++ optional withZlib zlib;
|
2013-06-06 21:08:24 +00:00
|
|
|
|
2018-08-03 16:52:40 +00:00
|
|
|
configureFlags = [
|
|
|
|
(stdenv.lib.enableFeature withPerl "perl")
|
|
|
|
(stdenv.lib.enableFeature withPython "python")
|
|
|
|
(stdenv.lib.enableFeature withTcl "tcl")
|
|
|
|
(stdenv.lib.withFeatureAs withTcl "tcl" "${tcl}/lib")
|
|
|
|
(stdenv.lib.enableFeature withCyrus "cyrus")
|
2018-10-27 20:50:06 +00:00
|
|
|
] ++ optional (!withIPv6) [ "--disable-ipv6" ]
|
|
|
|
++ optional withDebug [ "--enable-debug" ];
|
2013-06-06 21:08:24 +00:00
|
|
|
|
2014-02-10 03:47:20 +00:00
|
|
|
meta = with stdenv.lib; {
|
2013-06-06 21:08:24 +00:00
|
|
|
description = "Advanced IRC bouncer";
|
2018-06-27 20:12:57 +00:00
|
|
|
homepage = https://wiki.znc.in/ZNC;
|
2018-07-22 19:50:19 +00:00
|
|
|
maintainers = with maintainers; [ schneefux lnl7 ];
|
2014-02-10 03:47:20 +00:00
|
|
|
license = licenses.asl20;
|
|
|
|
platforms = platforms.unix;
|
2013-06-06 21:08:24 +00:00
|
|
|
};
|
|
|
|
}
|