4bc9e8a785
changes by @globin: * updated 2.1.0 to 2.2.0 * moved to a new derivation closes #11446 Signed-off-by: Robin Gloster <mail@glob.in>
41 lines
1.2 KiB
Nix
41 lines
1.2 KiB
Nix
{ stdenv, fetchurl, makeWrapper, jre, utillinux, getopt }:
|
|
|
|
with stdenv.lib;
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "2.2.0";
|
|
name = "elasticsearch-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "https://download.elasticsearch.org/elasticsearch/release/org/elasticsearch/distribution/tar/elasticsearch/${version}/${name}.tar.gz";
|
|
sha256 = "0c2d0mpcr8lpvifvgp2pfj7avdi7fa8a5vib0gqdap7mw60wqw7d";
|
|
};
|
|
|
|
patches = [ ./es-home-2.x.patch ];
|
|
|
|
buildInputs = [ makeWrapper jre ] ++
|
|
(if (!stdenv.isDarwin) then [utillinux] else [getopt]);
|
|
|
|
installPhase = ''
|
|
mkdir -p $out
|
|
cp -R bin config lib $out
|
|
|
|
# don't want to have binary with name plugin
|
|
mv $out/bin/plugin $out/bin/elasticsearch-plugin
|
|
wrapProgram $out/bin/elasticsearch ${if (!stdenv.isDarwin)
|
|
then ''--prefix PATH : "${utillinux}/bin/"''
|
|
else ''--prefix PATH : "${getopt}/bin"''} \
|
|
--set JAVA_HOME "${jre}"
|
|
wrapProgram $out/bin/elasticsearch-plugin --set JAVA_HOME "${jre}"
|
|
'';
|
|
|
|
meta = {
|
|
description = "Open Source, Distributed, RESTful Search Engine";
|
|
license = licenses.asl20;
|
|
platforms = platforms.unix;
|
|
maintainers = [
|
|
maintainers.offline
|
|
maintainers.markWot
|
|
];
|
|
};
|
|
}
|