032c04ebd7
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/znc/versions. These checks were done: - built on NixOS - ran ‘/nix/store/kkf4gxgjxcq0j8cm6yv5mnv6b8klbgrf-znc-1.7.0/bin/znc -h’ got 0 exit code - ran ‘/nix/store/kkf4gxgjxcq0j8cm6yv5mnv6b8klbgrf-znc-1.7.0/bin/znc --help’ got 0 exit code - found 1.7.0 with grep in /nix/store/kkf4gxgjxcq0j8cm6yv5mnv6b8klbgrf-znc-1.7.0 - directory tree listing: https://gist.github.com/766f104f22de520d85cc6b31c46cd5db
40 lines
1.0 KiB
Nix
40 lines
1.0 KiB
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-${version}";
|
|
version = "1.7.0";
|
|
|
|
src = fetchurl {
|
|
url = "http://znc.in/releases/archive/${name}.tar.gz";
|
|
sha256 = "0vxra50418bsjfdpf8vl70fijv8syvasjqdxfyjliff6k91k2zn0";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ openssl ]
|
|
++ 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 schneefux lnl7 ];
|
|
license = licenses.asl20;
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|