forked from mirrors/nixpkgs
4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
50 lines
1.3 KiB
Nix
50 lines
1.3 KiB
Nix
{ lib, stdenv, fetchurl, openssl, pkgconfig
|
|
, withPerl ? false, perl
|
|
, withPython ? false, python3
|
|
, withTcl ? false, tcl
|
|
, withCyrus ? true, cyrus_sasl
|
|
, withUnicode ? true, icu
|
|
, withZlib ? true, zlib
|
|
, withIPv6 ? true
|
|
, withDebug ? false
|
|
}:
|
|
|
|
with stdenv.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 = [ pkgconfig ];
|
|
|
|
buildInputs = [ openssl ]
|
|
++ optional withPerl perl
|
|
++ optional withPython python3
|
|
++ optional withTcl tcl
|
|
++ optional withCyrus cyrus_sasl
|
|
++ optional withUnicode icu
|
|
++ optional withZlib zlib;
|
|
|
|
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" ];
|
|
|
|
meta = with lib; {
|
|
description = "Advanced IRC bouncer";
|
|
homepage = "https://wiki.znc.in/ZNC";
|
|
maintainers = with maintainers; [ schneefux lnl7 ];
|
|
license = licenses.asl20;
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|