summary refs log tree commit diff
diff options
context:
space:
mode:
authorMartin Weinelt <hexa@darmstadt.ccc.de>2022-05-22 12:23:46 +0200
committerMartin Weinelt <hexa@darmstadt.ccc.de>2022-05-22 12:23:46 +0200
commiteb270e849c5e3d2868816e12f4498304f1a23fb6 (patch)
tree279a7e0ca1e7544f0e7d3014acdcb29818d83b90
parent266e665668dd3599701a6f071b099bf9492e966b (diff)
downloadnixpkgs-eb270e849c5e3d2868816e12f4498304f1a23fb6.tar
nixpkgs-eb270e849c5e3d2868816e12f4498304f1a23fb6.tar.gz
nixpkgs-eb270e849c5e3d2868816e12f4498304f1a23fb6.tar.bz2
nixpkgs-eb270e849c5e3d2868816e12f4498304f1a23fb6.tar.lz
nixpkgs-eb270e849c5e3d2868816e12f4498304f1a23fb6.tar.xz
nixpkgs-eb270e849c5e3d2868816e12f4498304f1a23fb6.tar.zst
nixpkgs-eb270e849c5e3d2868816e12f4498304f1a23fb6.zip
solr: remove maintainer, mark as vulnerable
The solr update in #161875 has gone nowhere sofar, while multiple CVEs
are lingering, which makes this a prime candidate to mark insecure.

The maintainer has indicated they wanted to remove themself, which has
not happened yet, so this takes care of that.

https://github.com/NixOS/nixpkgs/pull/161875#issuecomment-1058025102
-rw-r--r--pkgs/servers/search/solr/default.nix6
1 files changed, 5 insertions, 1 deletions
diff --git a/pkgs/servers/search/solr/default.nix b/pkgs/servers/search/solr/default.nix
index 479a7616ae1..a3b75134107 100644
--- a/pkgs/servers/search/solr/default.nix
+++ b/pkgs/servers/search/solr/default.nix
@@ -33,7 +33,11 @@ stdenv.mkDerivation rec {
     description = "Open source enterprise search platform from the Apache Lucene project";
     license = licenses.asl20;
     platforms = platforms.all;
-    maintainers = with maintainers; [ aanderse ];
+    maintainers = with maintainers; [ ];
+    knownVulnerabilities = [
+      "Multiple security issues throughout 2021, see https://solr.apache.org/security.html"
+      "Package is outdated and has no maintainer"
+    ];
   };
 
 }