forked from mirrors/nixpkgs
solr: 4.10.2 -> 4.10.3, CVE-2014-3628
(cherry picked from commit 4fa25ee93a
)
Signed-off-by: Domen Kožar <domen@dev.si>
This commit is contained in:
parent
eaeef0377f
commit
ee74e1a055
|
@ -262,7 +262,6 @@ rec {
|
|||
|
||||
# Apache mirrors (see http://www.apache.org/mirrors/).
|
||||
apache = [
|
||||
http://apache.cs.uu.nl/dist/
|
||||
http://www.eu.apache.org/dist/
|
||||
ftp://ftp.inria.fr/pub/Apache/
|
||||
http://apache.cict.fr/
|
||||
|
@ -272,6 +271,7 @@ rec {
|
|||
http://www.apache.org/dist/
|
||||
http://archive.apache.org/dist/ # fallback for old releases
|
||||
ftp://ftp.funet.fi/pub/mirrors/apache.org/
|
||||
http://apache.cs.uu.nl/dist/
|
||||
];
|
||||
|
||||
postgresql = [
|
||||
|
|
|
@ -2,11 +2,11 @@
|
|||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "solr-${version}";
|
||||
version = "4.10.2";
|
||||
version = "4.10.3";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://apache/lucene/solr/${version}/solr-${version}.tgz";
|
||||
sha256 = "07wwfgwcca3ndjrkfk7qyc4q8bdhwr0s6h4ijl4sqdy65aqcc6qh";
|
||||
sha256 = "1dp269jka4q62qhv47j91wsrsnbxfn23lsx6qcycbijrlyh28w5c";
|
||||
};
|
||||
|
||||
phases = [ "unpackPhase" "installPhase" ];
|
||||
|
@ -17,14 +17,12 @@ stdenv.mkDerivation rec {
|
|||
cp -r example/lib/ext $out/lib/ext
|
||||
'';
|
||||
|
||||
meta = {
|
||||
meta = with stdenv.lib; {
|
||||
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 ];
|
||||
description = "Open source enterprise search platform from the Apache Lucene project";
|
||||
license = licenses.asl20;
|
||||
platforms = platforms.all;
|
||||
maintainers = [ maintainers.rickynils maintainers.iElectric ];
|
||||
};
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue