7e49471316
the argument to optional should not be list
52 lines
1.3 KiB
Nix
52 lines
1.3 KiB
Nix
{ lib, stdenv, fetchurl, openssl, pkg-config
|
|
, withPerl ? false, perl
|
|
, withPython ? false, python3
|
|
, withTcl ? false, tcl
|
|
, withCyrus ? true, cyrus_sasl
|
|
, withUnicode ? true, icu
|
|
, withZlib ? true, zlib
|
|
, withIPv6 ? true
|
|
, withDebug ? false
|
|
}:
|
|
|
|
with lib;
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "znc";
|
|
version = "1.8.2";
|
|
|
|
src = fetchurl {
|
|
url = "https://znc.in/releases/archive/${pname}-${version}.tar.gz";
|
|
sha256 = "03fyi0j44zcanj1rsdx93hkdskwfvhbywjiwd17f9q1a7yp8l8zz";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
|
|
buildInputs = [ openssl ]
|
|
++ optional withPerl perl
|
|
++ optional withPython python3
|
|
++ optional withTcl tcl
|
|
++ optional withCyrus cyrus_sasl
|
|
++ optional withUnicode icu
|
|
++ optional withZlib zlib;
|
|
|
|
configureFlags = [
|
|
(lib.enableFeature withPerl "perl")
|
|
(lib.enableFeature withPython "python")
|
|
(lib.enableFeature withTcl "tcl")
|
|
(lib.withFeatureAs withTcl "tcl" "${tcl}/lib")
|
|
(lib.enableFeature withCyrus "cyrus")
|
|
] ++ optionals (!withIPv6) [ "--disable-ipv6" ]
|
|
++ optionals withDebug [ "--enable-debug" ];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with lib; {
|
|
description = "Advanced IRC bouncer";
|
|
homepage = "https://wiki.znc.in/ZNC";
|
|
maintainers = with maintainers; [ schneefux lnl7 ];
|
|
license = licenses.asl20;
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|