2018-06-24 12:22:12 +01:00
|
|
|
{ elk6Version
|
|
|
|
, enableUnfree ? true
|
|
|
|
, stdenv
|
|
|
|
, fetchurl
|
|
|
|
, makeWrapper
|
|
|
|
, jre_headless
|
|
|
|
, utillinux
|
|
|
|
, autoPatchelfHook
|
|
|
|
, zlib
|
|
|
|
}:
|
2017-12-18 19:53:54 +00:00
|
|
|
|
|
|
|
with stdenv.lib;
|
|
|
|
|
2018-06-24 12:22:12 +01:00
|
|
|
stdenv.mkDerivation (rec {
|
2017-12-18 19:53:54 +00:00
|
|
|
version = elk6Version;
|
2018-06-24 12:22:12 +01:00
|
|
|
name = "elasticsearch-${optionalString (!enableUnfree) "oss-"}${version}";
|
2017-12-18 19:53:54 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://artifacts.elastic.co/downloads/elasticsearch/${name}.tar.gz";
|
2018-06-24 12:22:12 +01:00
|
|
|
sha256 =
|
|
|
|
if enableUnfree
|
|
|
|
then "0960ak602pm95p2mha9cb1mrwdky8pfw3y89r2v4zpr5n730hmnh"
|
|
|
|
else "1i4i1ai75bf8k0zd1qf8x0bavrm8rcw13xdim443zza09w95ypk4";
|
2017-12-18 19:53:54 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
patches = [ ./es-home-6.x.patch ];
|
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
sed -i "s|ES_CLASSPATH=\"\$ES_HOME/lib/\*\"|ES_CLASSPATH=\"$out/lib/*\"|" ./bin/elasticsearch-env
|
|
|
|
'';
|
|
|
|
|
2018-03-27 19:17:10 +01:00
|
|
|
buildInputs = [ makeWrapper jre_headless utillinux ];
|
2017-12-18 19:53:54 +00:00
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
mkdir -p $out
|
|
|
|
cp -R bin config lib modules plugins $out
|
|
|
|
|
|
|
|
chmod -x $out/bin/*.*
|
|
|
|
|
|
|
|
wrapProgram $out/bin/elasticsearch \
|
2018-03-27 19:17:10 +01:00
|
|
|
--prefix PATH : "${utillinux}/bin/" \
|
2018-04-08 00:43:47 +01:00
|
|
|
--set JAVA_HOME "${jre_headless}"
|
2017-12-18 19:53:54 +00:00
|
|
|
|
|
|
|
wrapProgram $out/bin/elasticsearch-plugin --set JAVA_HOME "${jre_headless}"
|
|
|
|
'';
|
|
|
|
|
2018-06-24 12:22:12 +01:00
|
|
|
passthru = { inherit enableUnfree; };
|
|
|
|
|
2017-12-18 19:53:54 +00:00
|
|
|
meta = {
|
|
|
|
description = "Open Source, Distributed, RESTful Search Engine";
|
2018-06-24 12:22:12 +01:00
|
|
|
license = if enableUnfree then licenses.elastic else licenses.asl20;
|
2017-12-18 19:53:54 +00:00
|
|
|
platforms = platforms.unix;
|
|
|
|
maintainers = with maintainers; [ apeschar basvandijk ];
|
|
|
|
};
|
2018-06-24 12:22:12 +01:00
|
|
|
} // optionalAttrs enableUnfree {
|
|
|
|
dontPatchELF = true;
|
|
|
|
nativeBuildInputs = [ autoPatchelfHook ];
|
|
|
|
runtimeDependencies = [ zlib ];
|
|
|
|
postFixup = ''
|
|
|
|
for exe in $(find $out/modules/x-pack/x-pack-ml/platform/linux-x86_64/bin -executable -type f); do
|
|
|
|
echo "patching $exe..."
|
|
|
|
patchelf --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" "$exe"
|
|
|
|
done
|
|
|
|
'';
|
|
|
|
})
|