aboutsummaryrefslogtreecommitdiff
path: root/pkgs/applications/networking/znc
diff options
context:
space:
mode:
authorChristoph Hrdinka <c.github@hrdinka.at>2016-01-13 12:46:12 +0100
committerChristoph Hrdinka <c.github@hrdinka.at>2016-02-06 13:51:23 +0100
commitc737ee5abaefefe388edaa005af295df9c418c17 (patch)
tree27f76b5fe8ceb1f5facbcca19a61dda5135ee82c /pkgs/applications/networking/znc
parent94239516092d3fa8b34d2aa54f1a2b1110e078a7 (diff)
znc: delete 1.4
Diffstat (limited to 'pkgs/applications/networking/znc')
-rw-r--r--pkgs/applications/networking/znc/1.4.nix35
1 files changed, 0 insertions, 35 deletions
diff --git a/pkgs/applications/networking/znc/1.4.nix b/pkgs/applications/networking/znc/1.4.nix
deleted file mode 100644
index fdd02aac0b5e..000000000000
--- a/pkgs/applications/networking/znc/1.4.nix
+++ /dev/null
@@ -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;
- };
-}