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

(cherry picked from commit 4fa25ee93a45df61d97cf7ddd0149bbd954216d0)
Signed-off-by: Domen Kožar <domen@dev.si>

+8 -10
+1 -1
pkgs/build-support/fetchurl/mirrors.nix
··· 262 263 # Apache mirrors (see http://www.apache.org/mirrors/). 264 apache = [ 265 - http://apache.cs.uu.nl/dist/ 266 http://www.eu.apache.org/dist/ 267 ftp://ftp.inria.fr/pub/Apache/ 268 http://apache.cict.fr/ ··· 272 http://www.apache.org/dist/ 273 http://archive.apache.org/dist/ # fallback for old releases 274 ftp://ftp.funet.fi/pub/mirrors/apache.org/ 275 ]; 276 277 postgresql = [
··· 262 263 # Apache mirrors (see http://www.apache.org/mirrors/). 264 apache = [ 265 http://www.eu.apache.org/dist/ 266 ftp://ftp.inria.fr/pub/Apache/ 267 http://apache.cict.fr/ ··· 271 http://www.apache.org/dist/ 272 http://archive.apache.org/dist/ # fallback for old releases 273 ftp://ftp.funet.fi/pub/mirrors/apache.org/ 274 + http://apache.cs.uu.nl/dist/ 275 ]; 276 277 postgresql = [
+7 -9
pkgs/servers/search/solr/default.nix
··· 2 3 stdenv.mkDerivation rec { 4 name = "solr-${version}"; 5 - version = "4.10.2"; 6 7 src = fetchurl { 8 url = "mirror://apache/lucene/solr/${version}/solr-${version}.tgz"; 9 - sha256 = "07wwfgwcca3ndjrkfk7qyc4q8bdhwr0s6h4ijl4sqdy65aqcc6qh"; 10 }; 11 12 phases = [ "unpackPhase" "installPhase" ]; ··· 17 cp -r example/lib/ext $out/lib/ext 18 ''; 19 20 - meta = { 21 homepage = "https://lucene.apache.org/solr/"; 22 - description = '' 23 - Open source enterprise search platform from the Apache Lucene project 24 - ''; 25 - license = stdenv.lib.licenses.asl20; 26 - platforms = stdenv.lib.platforms.all; 27 - maintainers = [ stdenv.lib.maintainers.rickynils ]; 28 }; 29 30 }
··· 2 3 stdenv.mkDerivation rec { 4 name = "solr-${version}"; 5 + version = "4.10.3"; 6 7 src = fetchurl { 8 url = "mirror://apache/lucene/solr/${version}/solr-${version}.tgz"; 9 + sha256 = "1dp269jka4q62qhv47j91wsrsnbxfn23lsx6qcycbijrlyh28w5c"; 10 }; 11 12 phases = [ "unpackPhase" "installPhase" ]; ··· 17 cp -r example/lib/ext $out/lib/ext 18 ''; 19 20 + meta = with stdenv.lib; { 21 homepage = "https://lucene.apache.org/solr/"; 22 + description = "Open source enterprise search platform from the Apache Lucene project"; 23 + license = licenses.asl20; 24 + platforms = platforms.all; 25 + maintainers = [ maintainers.rickynils maintainers.iElectric ]; 26 }; 27 28 }