nixpkgs/pkgs/applications/networking/znc/default.nix

50 lines
1.3 KiB
Nix
Raw Normal View History

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
, withUnicode ? true, icu
, 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 {
pname = "znc";
version = "1.8.1";
2014-02-10 03:47:20 +00:00
2013-06-06 21:08:24 +00:00
src = fetchurl {
url = "https://znc.in/releases/archive/${pname}-${version}.tar.gz";
sha256 = "0hb1v167aa6gv5bcwz352l6b8gnd74ymjw92y4x882l099hzg59i";
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
++ optional withUnicode icu
++ optional withZlib zlib;
2013-06-06 21:08:24 +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")
] ++ 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";
homepage = "https://wiki.znc.in/ZNC";
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
};
}