about summary refs log tree commit diff
path: root/pkgs/tools
diff options
context:
space:
mode:
authoradisbladis <adisbladis@gmail.com>2019-09-06 15:29:09 +0100
committerGitHub <noreply@github.com>2019-09-06 15:29:09 +0100
commit4a1189e0abdbe26e34fc05555cf49c25583dfe3d (patch)
treed4a357bfecf6937880a83173267b72d6eb3252b7 /pkgs/tools
parent35f0ffb7049ce7522b157807f02b9835441c8041 (diff)
parent194aac9eed2b8c4fe6b300a869dc106f65542fd4 (diff)
downloadnixlib-4a1189e0abdbe26e34fc05555cf49c25583dfe3d.tar
nixlib-4a1189e0abdbe26e34fc05555cf49c25583dfe3d.tar.gz
nixlib-4a1189e0abdbe26e34fc05555cf49c25583dfe3d.tar.bz2
nixlib-4a1189e0abdbe26e34fc05555cf49c25583dfe3d.tar.lz
nixlib-4a1189e0abdbe26e34fc05555cf49c25583dfe3d.tar.xz
nixlib-4a1189e0abdbe26e34fc05555cf49c25583dfe3d.tar.zst
nixlib-4a1189e0abdbe26e34fc05555cf49c25583dfe3d.zip
Merge pull request #68207 from adisbladis/elk-5-removal
elasticsearch5/kibana5/beats5: Remove EOL packages
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/misc/logstash/5.x.nix39
-rw-r--r--pkgs/tools/system/journalbeat/default.nix28
2 files changed, 0 insertions, 67 deletions
diff --git a/pkgs/tools/misc/logstash/5.x.nix b/pkgs/tools/misc/logstash/5.x.nix
deleted file mode 100644
index 2545dd1e6bc0..000000000000
--- a/pkgs/tools/misc/logstash/5.x.nix
+++ /dev/null
@@ -1,39 +0,0 @@
-{ stdenv, fetchurl, elk5Version, makeWrapper, jre  }:
-
-stdenv.mkDerivation rec {
-  version = elk5Version;
-  pname = "logstash";
-
-  src = fetchurl {
-    url = "https://artifacts.elastic.co/downloads/logstash/${pname}-${version}.tar.gz";
-    sha256 = "0sax9p2bwjdrcvkm1mgvljdjn2qkyjd5i8rzajdn3n98gqin1la0";
-  };
-
-  dontBuild         = true;
-  dontPatchELF      = true;
-  dontStrip         = true;
-  dontPatchShebangs = true;
-
-  buildInputs = [
-    makeWrapper jre
-  ];
-
-  installPhase = ''
-    mkdir -p $out
-    cp -r {Gemfile*,modules,vendor,lib,bin,config,data,logstash-core,logstash-core-plugin-api} $out
-
-    wrapProgram $out/bin/logstash \
-       --set JAVA_HOME "${jre}"
-
-    wrapProgram $out/bin/logstash-plugin \
-       --set JAVA_HOME "${jre}"
-  '';
-
-  meta = with stdenv.lib; {
-    description = "Logstash is a data pipeline that helps you process logs and other event data from a variety of systems";
-    homepage    = https://www.elastic.co/products/logstash;
-    license     = licenses.asl20;
-    platforms   = platforms.unix;
-    maintainers = [ maintainers.wjlroe maintainers.offline ];
-  };
-}
diff --git a/pkgs/tools/system/journalbeat/default.nix b/pkgs/tools/system/journalbeat/default.nix
deleted file mode 100644
index 0a04581264e0..000000000000
--- a/pkgs/tools/system/journalbeat/default.nix
+++ /dev/null
@@ -1,28 +0,0 @@
-{ lib, systemd, buildGoPackage, fetchFromGitHub }:
-
-buildGoPackage rec {
-  pname = "journalbeat";
-  version = "5.6.8";
-
-  src = fetchFromGitHub {
-    owner = "mheese";
-    repo = "journalbeat";
-    rev = "v${version}";
-    sha256 = "1vgpwnwqjc93nvdpcd52748bwl3r371jb55l17bsgdzrmlcyfm8a";
-  };
-
-  goPackagePath = "github.com/mheese/journalbeat";
-
-  buildInputs = [ systemd.dev ];
-
-  postFixup = let libPath = lib.makeLibraryPath [ systemd.lib ]; in ''
-    patchelf --set-rpath ${libPath} "$bin/bin/journalbeat"
-  '';
-
-  meta = with lib; {
-    homepage = https://github.com/mheese/journalbeat;
-    description = "Journalbeat is a log shipper from systemd/journald to Logstash/Elasticsearch";
-    license = licenses.asl20;
-    maintainers = with maintainers; [ mbrgm ];
-  };
-}