about summary refs log tree commit diff
path: root/pkgs/tools/misc
diff options
context:
space:
mode:
authorChristian Lask <christian@hiberno.net>2016-07-27 17:45:38 +0200
committerChristian Lask <christian@hiberno.net>2016-07-27 17:45:38 +0200
commit6d68a1fbf3ce6837b01d6ed6b74d5b7a49ef2ca9 (patch)
tree1b0668f7963567b479e0f1acb79e37d6eb440042 /pkgs/tools/misc
parent381967327ff7e9885a6ebd32b13580a8a95ee5fc (diff)
downloadnixlib-6d68a1fbf3ce6837b01d6ed6b74d5b7a49ef2ca9.tar
nixlib-6d68a1fbf3ce6837b01d6ed6b74d5b7a49ef2ca9.tar.gz
nixlib-6d68a1fbf3ce6837b01d6ed6b74d5b7a49ef2ca9.tar.bz2
nixlib-6d68a1fbf3ce6837b01d6ed6b74d5b7a49ef2ca9.tar.lz
nixlib-6d68a1fbf3ce6837b01d6ed6b74d5b7a49ef2ca9.tar.xz
nixlib-6d68a1fbf3ce6837b01d6ed6b74d5b7a49ef2ca9.tar.zst
nixlib-6d68a1fbf3ce6837b01d6ed6b74d5b7a49ef2ca9.zip
logstash: 1.5.3 -> 2.3.4
Note: the option to configure the watchdog timeout seems to be gone
in the 2.3 series of Logstash. It complains about an unknown option
and it is not in the source anymore. I am thus removing this
configuration option to adjust the service to these changes, too.
Diffstat (limited to 'pkgs/tools/misc')
-rw-r--r--pkgs/tools/misc/logstash/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/misc/logstash/default.nix b/pkgs/tools/misc/logstash/default.nix
index 289d57f88c06..e8f3ccf747d6 100644
--- a/pkgs/tools/misc/logstash/default.nix
+++ b/pkgs/tools/misc/logstash/default.nix
@@ -1,12 +1,12 @@
 { stdenv, fetchurl }:
 
 stdenv.mkDerivation rec {
-  version = "1.5.3";
+  version = "2.3.4";
   name = "logstash-${version}";
 
   src = fetchurl {
     url = "https://download.elasticsearch.org/logstash/logstash/logstash-${version}.tar.gz";
-    sha256 = "1an476k4q2shdxvhcx4fzbrcpk6isjrrvzlb6ivxfqg5fih3cg7b";
+    sha256 = "10wm4f5ygzifk84c1n9yyj285ccn2zd2m61y6hyf6wirvhys0qkz";
   };
 
   dontBuild         = true;