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

36 lines
924 B
Nix
Raw Normal View History

2019-03-28 15:47:41 +01:00
{ stdenv, fetchurl, jre, makeWrapper }:
stdenv.mkDerivation rec {
pname = "solr";
2019-05-22 02:28:02 +02:00
version = "8.1.0";
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-05-22 02:28:02 +02:00
sha256 = "1w8hc2694c3acs4hqk0rkl3lmv4sbnji9n5mzw1piq90azlmnb1a";
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; {
homepage = https://lucene.apache.org/solr/;
description = "Open source enterprise search platform from the Apache Lucene project";
license = licenses.asl20;
platforms = platforms.all;
2019-05-22 02:29:19 +02:00
maintainers = with maintainers; [ rickynils domenkozar aanderse ];
2019-03-28 15:47:41 +01:00
};
}