solr: 4.10.2 -> 4.10.3, CVE-2014-3628

(cherry picked from commit 4fa25ee93a45df61d97cf7ddd0149bbd954216d0)
Signed-off-by: Domen Kožar <domen@dev.si>
This commit is contained in:
Domen Kožar 2015-02-04 11:48:13 +01:00
parent eaeef0377f
commit ee74e1a055
2 changed files with 8 additions and 10 deletions

View File

@ -262,7 +262,6 @@ rec {
# Apache mirrors (see http://www.apache.org/mirrors/). # Apache mirrors (see http://www.apache.org/mirrors/).
apache = [ apache = [
http://apache.cs.uu.nl/dist/
http://www.eu.apache.org/dist/ http://www.eu.apache.org/dist/
ftp://ftp.inria.fr/pub/Apache/ ftp://ftp.inria.fr/pub/Apache/
http://apache.cict.fr/ http://apache.cict.fr/
@ -272,6 +271,7 @@ rec {
http://www.apache.org/dist/ http://www.apache.org/dist/
http://archive.apache.org/dist/ # fallback for old releases http://archive.apache.org/dist/ # fallback for old releases
ftp://ftp.funet.fi/pub/mirrors/apache.org/ ftp://ftp.funet.fi/pub/mirrors/apache.org/
http://apache.cs.uu.nl/dist/
]; ];
postgresql = [ postgresql = [

View File

@ -2,11 +2,11 @@
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "solr-${version}"; name = "solr-${version}";
version = "4.10.2"; version = "4.10.3";
src = fetchurl { src = fetchurl {
url = "mirror://apache/lucene/solr/${version}/solr-${version}.tgz"; url = "mirror://apache/lucene/solr/${version}/solr-${version}.tgz";
sha256 = "07wwfgwcca3ndjrkfk7qyc4q8bdhwr0s6h4ijl4sqdy65aqcc6qh"; sha256 = "1dp269jka4q62qhv47j91wsrsnbxfn23lsx6qcycbijrlyh28w5c";
}; };
phases = [ "unpackPhase" "installPhase" ]; phases = [ "unpackPhase" "installPhase" ];
@ -17,14 +17,12 @@ stdenv.mkDerivation rec {
cp -r example/lib/ext $out/lib/ext cp -r example/lib/ext $out/lib/ext
''; '';
meta = { meta = with stdenv.lib; {
homepage = "https://lucene.apache.org/solr/"; homepage = "https://lucene.apache.org/solr/";
description = '' description = "Open source enterprise search platform from the Apache Lucene project";
Open source enterprise search platform from the Apache Lucene project license = licenses.asl20;
''; platforms = platforms.all;
license = stdenv.lib.licenses.asl20; maintainers = [ maintainers.rickynils maintainers.iElectric ];
platforms = stdenv.lib.platforms.all;
maintainers = [ stdenv.lib.maintainers.rickynils ];
}; };
} }