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;
|
|
|
|
stdenv.mkDerivation rec {
|
2016-08-01 09:19:07 +00:00
|
|
|
name = "znc-1.6.3";
|
2014-02-10 03:47:20 +00:00
|
|
|
|
2013-06-06 21:08:24 +00:00
|
|
|
src = fetchurl {
|
|
|
|
url = "http://znc.in/releases/${name}.tar.gz";
|
2016-08-01 09:19:07 +00:00
|
|
|
sha256 = "09xqi5fs40x6nj9gq99bnw1a7saq96bvqxknxx0ilq7yfvg4c733";
|
2013-06-06 21:08:24 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ openssl pkgconfig ]
|
|
|
|
++ 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";
|
|
|
|
homepage = http://wiki.znc.in/ZNC;
|
2016-08-01 09:19:07 +00:00
|
|
|
maintainers = with maintainers; [ viric schneefux ];
|
2014-02-10 03:47:20 +00:00
|
|
|
license = licenses.asl20;
|
|
|
|
platforms = platforms.unix;
|
2013-06-06 21:08:24 +00:00
|
|
|
};
|
|
|
|
}
|