nixpkgs/pkgs/servers/search/solr/8.x.nix

36 lines
916 B
Nix
Raw Normal View History

2019-03-28 15:47:41 +01:00
{ stdenv, fetchurl, jre, makeWrapper }:
stdenv.mkDerivation rec {
pname = "solr";
2019-12-09 22:23:05 +01:00
version = "8.3.1";
2019-03-28 15:47:41 +01:00
src = fetchurl {
2019-05-22 02:29:19 +02:00
url = "mirror://apache/lucene/${pname}/${version}/${pname}-${version}.tgz";
2019-12-09 22:23:05 +01:00
sha256 = "0n80690vdsd0gf5gg77kg8pyf3nw0iv33zag9r7al88j5riy42ih";
2019-03-28 15:47:41 +01:00
};
nativeBuildInputs = [ makeWrapper ];
installPhase = ''
mkdir -p $out $out/bin
cp -r bin/solr bin/post $out/bin/
cp -r contrib $out/
cp -r dist $out/
cp -r example $out/
cp -r server $out/
wrapProgram $out/bin/solr --set JAVA_HOME "${jre}"
wrapProgram $out/bin/post --set JAVA_HOME "${jre}"
'';
meta = with stdenv.lib; {
2019-08-02 16:42:12 +02:00
homepage = "https://lucene.apache.org/solr/";
2019-03-28 15:47:41 +01:00
description = "Open source enterprise search platform from the Apache Lucene project";
license = licenses.asl20;
platforms = platforms.all;
maintainers = with maintainers; [ domenkozar aanderse ];
2019-03-28 15:47:41 +01:00
};
}