nixpkgs/pkgs/applications/networking/znc/default.nix
Bruce Adams b94cec592c Update znc from 1.4 to 1.6.0
ZNC 1.6.0 includes improved SSL/TLS settings to
prevent POODLE and FREAK attacks.
2015-04-03 06:53:08 -04:00

36 lines
999 B
Nix

{ stdenv, fetchurl, openssl, pkgconfig
, withPerl ? false, perl
, withPython ? false, python3
, withTcl ? false, tcl
, withCyrus ? true, cyrus_sasl
}:
with stdenv.lib;
stdenv.mkDerivation rec {
name = "znc-1.6.0";
src = fetchurl {
url = "http://znc.in/releases/${name}.tar.gz";
sha256 = "df622aeae34d26193c738dff6499e56ad669ec654484e19623738d84cc80aba7";
};
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 ";
meta = with stdenv.lib; {
description = "Advanced IRC bouncer";
homepage = http://wiki.znc.in/ZNC;
maintainers = with maintainers; [ viric ];
license = licenses.asl20;
platforms = platforms.unix;
};
}