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
|
|
|
|
}:
|
|
|
|
|
|
|
|
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-05-12 12:14:34 +00:00
|
|
|
version = "1.7.0";
|
2014-02-10 03:47:20 +00:00
|
|
|
|
2013-06-06 21:08:24 +00:00
|
|
|
src = fetchurl {
|
2017-03-16 20:03:15 +00:00
|
|
|
url = "http://znc.in/releases/archive/${name}.tar.gz";
|
2018-05-12 12:14:34 +00:00
|
|
|
sha256 = "0vxra50418bsjfdpf8vl70fijv8syvasjqdxfyjliff6k91k2zn0";
|
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
|
|
|
|
++ optional withCyrus cyrus_sasl;
|
|
|
|
|
|
|
|
configureFlags = optionalString withPerl "--enable-perl "
|
|
|
|
+ optionalString withPython "--enable-python "
|
|
|
|
+ optionalString withTcl "--enable-tcl --with-tcl=${tcl}/lib "
|
|
|
|
+ optionalString withCyrus "--enable-cyrus ";
|
|
|
|
|
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;
|
2017-03-07 00:04:31 +00:00
|
|
|
maintainers = with maintainers; [ viric schneefux lnl7 ];
|
2014-02-10 03:47:20 +00:00
|
|
|
license = licenses.asl20;
|
|
|
|
platforms = platforms.unix;
|
2013-06-06 21:08:24 +00:00
|
|
|
};
|
|
|
|
}
|