9bb3fccb5b
continuation of #109595 pkgconfig was aliased in 2018, however, it remained in all-packages.nix due to its wide usage. This cleans up the remaining references to pkgs.pkgsconfig and moves the entry to aliases.nix. python3Packages.pkgconfig remained unchanged because it's the canonical name of the upstream package on pypi.
50 lines
1.3 KiB
Nix
50 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")
|
|
] ++ optional (!withIPv6) [ "--disable-ipv6" ]
|
|
++ optional withDebug [ "--enable-debug" ];
|
|
|
|
meta = with lib; {
|
|
description = "Advanced IRC bouncer";
|
|
homepage = "https://wiki.znc.in/ZNC";
|
|
maintainers = with maintainers; [ schneefux lnl7 ];
|
|
license = licenses.asl20;
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|