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 262 263 263 # Apache mirrors (see http://www.apache.org/mirrors/). 264 264 apache = [ 265 - http://apache.cs.uu.nl/dist/ 266 265 http://www.eu.apache.org/dist/ 267 266 ftp://ftp.inria.fr/pub/Apache/ 268 267 http://apache.cict.fr/ ··· 272 271 http://www.apache.org/dist/ 273 272 http://archive.apache.org/dist/ # fallback for old releases 274 273 ftp://ftp.funet.fi/pub/mirrors/apache.org/ 274 + http://apache.cs.uu.nl/dist/ 275 275 ]; 276 276 277 277 postgresql = [
+7 -9
pkgs/servers/search/solr/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 name = "solr-${version}"; 5 - version = "4.10.2"; 5 + version = "4.10.3"; 6 6 7 7 src = fetchurl { 8 8 url = "mirror://apache/lucene/solr/${version}/solr-${version}.tgz"; 9 - sha256 = "07wwfgwcca3ndjrkfk7qyc4q8bdhwr0s6h4ijl4sqdy65aqcc6qh"; 9 + sha256 = "1dp269jka4q62qhv47j91wsrsnbxfn23lsx6qcycbijrlyh28w5c"; 10 10 }; 11 11 12 12 phases = [ "unpackPhase" "installPhase" ]; ··· 17 17 cp -r example/lib/ext $out/lib/ext 18 18 ''; 19 19 20 - meta = { 20 + meta = with stdenv.lib; { 21 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 ]; 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 ]; 28 26 }; 29 27 30 28 }