summary refs log tree commit diff
diff options
context:
space:
mode:
authorajs124 <git@ajs124.de>2022-06-02 17:52:03 +0200
committerajs124 <git@ajs124.de>2022-06-02 18:03:52 +0200
commit5bb61d6a2520f454c8e40e391955b7aad46e310c (patch)
treef226409a68beaaf11bdec856294e4ba47350cbda
parent100b75a44b2c30e1bfe9d034cf72c256b11a8a1c (diff)
downloadnixpkgs-5bb61d6a2520f454c8e40e391955b7aad46e310c.tar
nixpkgs-5bb61d6a2520f454c8e40e391955b7aad46e310c.tar.gz
nixpkgs-5bb61d6a2520f454c8e40e391955b7aad46e310c.tar.bz2
nixpkgs-5bb61d6a2520f454c8e40e391955b7aad46e310c.tar.lz
nixpkgs-5bb61d6a2520f454c8e40e391955b7aad46e310c.tar.xz
nixpkgs-5bb61d6a2520f454c8e40e391955b7aad46e310c.tar.zst
nixpkgs-5bb61d6a2520f454c8e40e391955b7aad46e310c.zip
syslogng_incubator: remove after being marked broken for over 18 months
It was marked in commit 6d797c846287358c33ec764dc0e7aa2ae8b9ebe6 by Jörg Thalheim on 2018-08-27 (commited on 2018-08-27)
-rw-r--r--nixos/modules/services/logging/syslog-ng.nix3
-rw-r--r--pkgs/tools/system/syslog-ng-incubator/default.nix34
-rw-r--r--pkgs/top-level/all-packages.nix2
3 files changed, 0 insertions, 39 deletions
diff --git a/nixos/modules/services/logging/syslog-ng.nix b/nixos/modules/services/logging/syslog-ng.nix
index 0a57bf20bd0..1c11de51f2c 100644
--- a/nixos/modules/services/logging/syslog-ng.nix
+++ b/nixos/modules/services/logging/syslog-ng.nix
@@ -51,9 +51,6 @@ in {
       extraModulePaths = mkOption {
         type = types.listOf types.str;
         default = [];
-        example = literalExpression ''
-          [ "''${pkgs.syslogng_incubator}/lib/syslog-ng" ]
-        '';
         description = ''
           A list of paths that should be included in syslog-ng's
           <literal>--module-path</literal> option. They should usually
diff --git a/pkgs/tools/system/syslog-ng-incubator/default.nix b/pkgs/tools/system/syslog-ng-incubator/default.nix
deleted file mode 100644
index affb4bca6ce..00000000000
--- a/pkgs/tools/system/syslog-ng-incubator/default.nix
+++ /dev/null
@@ -1,34 +0,0 @@
-{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, glib, syslogng
-, eventlog, perl, python2, bison, protobufc, libivykis, libcap, czmq
-}:
-
-stdenv.mkDerivation rec {
-  pname = "syslog-ng-incubator";
-  version = "0.6.2";
-
-  src = fetchFromGitHub {
-    owner = "balabit";
-    repo = "syslog-ng-incubator";
-    rev = "${pname}-${version}";
-    sha256 = "17y85cqcyfbp882gaii731cvz5bg1s8rgda271jh6kgnrz5rbd4s";
-  };
-
-  nativeBuildInputs = [ pkg-config autoreconfHook bison ];
-
-  buildInputs = [
-    glib syslogng eventlog perl python2 protobufc libivykis libcap czmq
-  ];
-
-  configureFlags = [
-    "--with-module-dir=$(out)/lib/syslog-ng"
-  ];
-
-  meta = with lib; {
-    homepage = "https://github.com/balabit/syslog-ng-incubator";
-    description = "A collection of tools and modules for syslog-ng";
-    license = licenses.gpl2;
-    maintainers = [];
-    platforms = platforms.linux;
-    broken = true; # 2018-05-12
-  };
-}
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index 7b3a4c78a42..f4fd341c76d 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -4267,8 +4267,6 @@ with pkgs;
 
   syslogng = callPackage ../tools/system/syslog-ng { };
 
-  syslogng_incubator = callPackage ../tools/system/syslog-ng-incubator { };
-
   svt-av1 = callPackage ../tools/video/svt-av1 { };
 
   inherit (callPackages ../servers/rainloop { })