znc: delete 1.4
This commit is contained in:
parent
9423951609
commit
c737ee5aba
@ -1,35 +0,0 @@
|
|||||||
{ 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-1.4";
|
|
||||||
|
|
||||||
src = fetchurl {
|
|
||||||
url = "http://znc.in/releases/${name}.tar.gz";
|
|
||||||
sha256 = "0lkv58pq4d5lzcyx8v8anzinx0sx0zw0js4jij13jb8qxp88zsc6";
|
|
||||||
};
|
|
||||||
|
|
||||||
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 ";
|
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
|
||||||
description = "Advanced IRC bouncer";
|
|
||||||
homepage = http://wiki.znc.in/ZNC;
|
|
||||||
maintainers = with maintainers; [ viric ];
|
|
||||||
license = licenses.asl20;
|
|
||||||
platforms = platforms.unix;
|
|
||||||
};
|
|
||||||
}
|
|
@ -15914,8 +15914,6 @@ let
|
|||||||
|
|
||||||
znc = callPackage ../applications/networking/znc { };
|
znc = callPackage ../applications/networking/znc { };
|
||||||
|
|
||||||
znc_14 = callPackage ../applications/networking/znc/1.4.nix { };
|
|
||||||
|
|
||||||
zncModules = recurseIntoAttrs (
|
zncModules = recurseIntoAttrs (
|
||||||
callPackage ../applications/networking/znc/modules.nix { }
|
callPackage ../applications/networking/znc/modules.nix { }
|
||||||
);
|
);
|
||||||
|
Loading…
Reference in New Issue
Block a user