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

35 lines
1 KiB
Nix
Raw Normal View History

2013-08-27 15:58:46 +00:00
{ stdenv, fetchurl, makeWrapper, jre, utillinux }:
2013-03-07 11:36:29 +00:00
stdenv.mkDerivation rec {
name = "elasticsearch-1.2.1";
2013-03-07 11:36:29 +00:00
src = fetchurl {
url = "https://download.elasticsearch.org/elasticsearch/elasticsearch/${name}.tar.gz";
sha256 = "11lirxl0hb0xfd57accsgldq1adrlv9pak2520jll2sj5gg71cmj";
2013-03-07 11:36:29 +00:00
};
patches = [ ./es-home.patch ];
2013-08-27 15:58:46 +00:00
buildInputs = [ makeWrapper jre utillinux ];
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/*" \
--prefix PATH : "${utillinux}/bin/" \
--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 = "ASL2.0";
};
}