My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nomicon/pkgs/servers/search/solr/default.nix

31 lines
755 B

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "solr-${version}";
10 years ago
version = "4.10.2";
src = fetchurl {
url = "mirror://apache/lucene/solr/${version}/solr-${version}.tgz";
10 years ago
sha256 = "07wwfgwcca3ndjrkfk7qyc4q8bdhwr0s6h4ijl4sqdy65aqcc6qh";
};
phases = [ "unpackPhase" "installPhase" ];
installPhase = ''
mkdir -p $out/lib
cp dist/${name}.war $out/lib/solr.war
cp -r example/lib/ext $out/lib/ext
'';
meta = {
homepage = "https://lucene.apache.org/solr/";
description = ''
Open source enterprise search platform from the Apache Lucene project
'';
license = stdenv.lib.licenses.asl20;
platforms = stdenv.lib.platforms.all;
maintainers = [ stdenv.lib.maintainers.rickynils ];
};
}