1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs synced 2024-10-22 14:17:16 -04:00
nixpkgs/pkgs/applications/networking/znc/default.nix

36 lines
985 B
Nix
Raw Normal View History

2014-02-09 22:47:20 -05:00
{ stdenv, fetchurl, openssl, pkgconfig
2013-06-06 17:08:24 -04:00
, withPerl ? false, perl
, withPython ? false, python3
, withTcl ? false, tcl
, withCyrus ? true, cyrus_sasl
}:
with stdenv.lib;
stdenv.mkDerivation rec {
2014-05-27 16:27:17 -04:00
name = "znc-1.4";
2014-02-09 22:47:20 -05:00
2013-06-06 17:08:24 -04:00
src = fetchurl {
url = "http://znc.in/releases/${name}.tar.gz";
2014-05-27 16:27:17 -04:00
sha256 = "0lkv58pq4d5lzcyx8v8anzinx0sx0zw0js4jij13jb8qxp88zsc6";
2013-06-06 17:08:24 -04:00
};
buildInputs = [ openssl pkgconfig ]
++ 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 ";
2014-02-09 22:47:20 -05:00
meta = with stdenv.lib; {
2013-06-06 17:08:24 -04:00
description = "Advanced IRC bouncer";
homepage = http://wiki.znc.in/ZNC;
2014-02-09 22:47:20 -05:00
maintainers = with maintainers; [ viric ];
license = licenses.asl20;
platforms = platforms.unix;
2013-06-06 17:08:24 -04:00
};
}