summary refs log tree commit diff
path: root/pkgs/servers
diff options
context:
space:
mode:
authorRob Vermaas <rob.vermaas@gmail.com>2014-06-13 14:00:26 +0200
committerRob Vermaas <rob.vermaas@gmail.com>2014-06-13 14:00:26 +0200
commit2c918c654550a746c0732e9cb0840435d3c4f1c5 (patch)
treef66190b8b7737ea6faa1777ec4aa2b0bebf3cf51 /pkgs/servers
parent61384f5627060fca90805a07af24467e5aeca5b4 (diff)
downloadnixlib-2c918c654550a746c0732e9cb0840435d3c4f1c5.tar
nixlib-2c918c654550a746c0732e9cb0840435d3c4f1c5.tar.gz
nixlib-2c918c654550a746c0732e9cb0840435d3c4f1c5.tar.bz2
nixlib-2c918c654550a746c0732e9cb0840435d3c4f1c5.tar.lz
nixlib-2c918c654550a746c0732e9cb0840435d3c4f1c5.tar.xz
nixlib-2c918c654550a746c0732e9cb0840435d3c4f1c5.tar.zst
nixlib-2c918c654550a746c0732e9cb0840435d3c4f1c5.zip
Revert "Revert "elasticsearch: update from 1.0.1 to 1.2.1, potentially fixes CVE-2013-5307""
This reverts commit 61384f5627060fca90805a07af24467e5aeca5b4.
Diffstat (limited to 'pkgs/servers')
-rw-r--r--pkgs/servers/search/elasticsearch/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/servers/search/elasticsearch/default.nix b/pkgs/servers/search/elasticsearch/default.nix
index c6939ce5f7a4..b227832ad734 100644
--- a/pkgs/servers/search/elasticsearch/default.nix
+++ b/pkgs/servers/search/elasticsearch/default.nix
@@ -1,10 +1,10 @@
 { stdenv, fetchurl, makeWrapper, jre, utillinux }:
 stdenv.mkDerivation rec {
-  name = "elasticsearch-1.0.1";
+  name = "elasticsearch-1.2.1";
 
   src = fetchurl {
     url = "https://download.elasticsearch.org/elasticsearch/elasticsearch/${name}.tar.gz";
-    sha256 = "0nwv7llw7gk94alfcpxxy0lybhnw7fggv30v7ylsxn20id9g7kba";
+    sha256 = "11lirxl0hb0xfd57accsgldq1adrlv9pak2520jll2sj5gg71cmj";
   };
 
   patches = [ ./es-home.patch ];