nixpkgs/pkgs/applications/networking/znc/default.nix

45 lines
1.1 KiB
Nix
Raw Normal View History

2014-02-10 03:47:20 +00:00
{ stdenv, fetchurl, openssl, pkgconfig
2013-06-06 21:08:24 +00:00
, withPerl ? false, perl
, withPython ? false, python3
, withTcl ? false, tcl
, withCyrus ? true, cyrus_sasl
, withUnicode ? true, icu
2013-06-06 21:08:24 +00:00
}:
with stdenv.lib;
2017-03-07 00:04:31 +00:00
2013-06-06 21:08:24 +00:00
stdenv.mkDerivation rec {
2017-03-07 00:04:31 +00:00
name = "znc-${version}";
version = "1.7.1";
2014-02-10 03:47:20 +00:00
2013-06-06 21:08:24 +00:00
src = fetchurl {
url = "https://znc.in/releases/archive/${name}.tar.gz";
sha256 = "1i1r1lh9q2mr1bg520zrvrlwhrhy6wibrin78wjxq1gab1qymks4";
2013-06-06 21:08:24 +00:00
};
2017-03-16 20:03:15 +00:00
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ openssl ]
2013-06-06 21:08:24 +00:00
++ optional withPerl perl
++ optional withPython python3
++ optional withTcl tcl
++ optional withCyrus cyrus_sasl
++ optional withUnicode icu;
2013-06-06 21:08:24 +00:00
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")
];
2013-06-06 21:08:24 +00:00
2014-02-10 03:47:20 +00:00
meta = with stdenv.lib; {
2013-06-06 21:08:24 +00:00
description = "Advanced IRC bouncer";
2018-06-27 20:12:57 +00:00
homepage = https://wiki.znc.in/ZNC;
maintainers = with maintainers; [ schneefux lnl7 ];
2014-02-10 03:47:20 +00:00
license = licenses.asl20;
platforms = platforms.unix;
2013-06-06 21:08:24 +00:00
};
}