elasticsearch 1.4.5 -> 1.5.2
This commit is contained in:
parent
ef07bd04dc
commit
8aa50beb1f
|
@ -3,11 +3,11 @@
|
||||||
with stdenv.lib;
|
with stdenv.lib;
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "elasticsearch-1.4.5";
|
name = "elasticsearch-1.5.2";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://download.elasticsearch.org/elasticsearch/elasticsearch/${name}.tar.gz";
|
url = "https://download.elastic.co/elasticsearch/elasticsearch/${name}.tar.gz";
|
||||||
sha256 = "1qjnffbxa1fz5f3sqahhgf45b4r1xa5lkjy9xj135g0w8jgala6w";
|
sha256 = "054s0k0y0g1x6wzbd6gmvrp5n89fqwqssbyhay0gmhvs6sbpibpg";
|
||||||
};
|
};
|
||||||
|
|
||||||
patches = [ ./es-home.patch ];
|
patches = [ ./es-home.patch ];
|
||||||
|
@ -36,7 +36,8 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "Open Source, Distributed, RESTful Search Engine";
|
description = "Open Source, Distributed, RESTful Search Engine";
|
||||||
license = stdenv.lib.licenses.asl20;
|
license = licenses.asl20;
|
||||||
platforms = platforms.unix;
|
platforms = platforms.unix;
|
||||||
|
maintainers = [ maintainers.offline ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,8 +1,7 @@
|
||||||
diff --git a/bin/elasticsearch b/bin/elasticsearch
|
diff -rupN a/bin/elasticsearch b/bin/elasticsearch
|
||||||
index c7c9263..0fcecf6 100755
|
--- a/bin/elasticsearch 2015-08-05 17:52:05.740819671 +0200
|
||||||
--- a/bin/elasticsearch
|
+++ b/bin/elasticsearch 2015-08-05 17:22:34.664657364 +0200
|
||||||
+++ b/bin/elasticsearch
|
@@ -83,7 +83,10 @@ while [ -h "$SCRIPT" ] ; do
|
||||||
@@ -76,7 +76,10 @@ while [ -h "$SCRIPT" ] ; do
|
|
||||||
done
|
done
|
||||||
|
|
||||||
# determine elasticsearch home
|
# determine elasticsearch home
|
||||||
|
@ -14,10 +13,9 @@ index c7c9263..0fcecf6 100755
|
||||||
|
|
||||||
# make ELASTICSEARCH_HOME absolute
|
# make ELASTICSEARCH_HOME absolute
|
||||||
ES_HOME=`cd "$ES_HOME"; pwd`
|
ES_HOME=`cd "$ES_HOME"; pwd`
|
||||||
diff --git a/bin/plugin b/bin/plugin
|
diff -rupN a/bin/plugin b/bin/plugin
|
||||||
index a8c796a..daf7b99 100755
|
--- a/bin/plugin 2015-08-05 17:57:07.903088815 +0200
|
||||||
--- a/bin/plugin
|
+++ b/bin/plugin 2015-08-05 17:57:38.979808139 +0200
|
||||||
+++ b/bin/plugin
|
|
||||||
@@ -16,7 +16,10 @@ while [ -h "$SCRIPT" ] ; do
|
@@ -16,7 +16,10 @@ while [ -h "$SCRIPT" ] ; do
|
||||||
done
|
done
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue