nixpkgs/pkgs/servers/search/elasticsearch/default.nix

43 lines
1.3 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, makeWrapper, jre, utillinux, getopt }:
2014-07-05 08:58:08 +00:00
with stdenv.lib;
2013-03-07 11:36:29 +00:00
stdenv.mkDerivation rec {
name = "elasticsearch-1.4.5";
2013-03-07 11:36:29 +00:00
src = fetchurl {
url = "https://download.elasticsearch.org/elasticsearch/elasticsearch/${name}.tar.gz";
sha256 = "1qjnffbxa1fz5f3sqahhgf45b4r1xa5lkjy9xj135g0w8jgala6w";
2013-03-07 11:36:29 +00:00
};
patches = [ ./es-home.patch ];
buildInputs = [ makeWrapper jre ] ++
(if (!stdenv.isDarwin) then [utillinux] else [getopt]);
2013-08-27 15:58:46 +00:00
2013-03-07 11:36:29 +00:00
installPhase = ''
mkdir -p $out
cp -R bin config lib $out
2013-08-27 15:58:46 +00:00
# don't want to have binary with name plugin
mv $out/bin/plugin $out/bin/elasticsearch-plugin
# set ES_CLASSPATH and JAVA_HOME
wrapProgram $out/bin/elasticsearch \
--prefix ES_CLASSPATH : "$out/lib/${name}.jar":"$out/lib/*":"$out/lib/sigar/*" \
${if (!stdenv.isDarwin)
then ''--prefix PATH : "${utillinux}/bin/"''
else ''--prefix PATH : "${getopt}/bin"''} \
2013-08-27 15:58:46 +00:00
--set JAVA_HOME "${jre}"
wrapProgram $out/bin/elasticsearch-plugin \
--prefix ES_CLASSPATH : "$out/lib/${name}.jar":"$out/lib/*":"$out/lib/sigar/*" \
--set JAVA_HOME "${jre}"
2013-03-07 11:36:29 +00:00
'';
meta = {
description = "Open Source, Distributed, RESTful Search Engine";
license = stdenv.lib.licenses.asl20;
2014-07-05 10:09:53 +00:00
platforms = platforms.unix;
2013-03-07 11:36:29 +00:00
};
}