1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-21 13:10:33 +00:00

p7zip: mark as insecure

This commit is contained in:
Daniel Frank 2020-04-30 20:18:40 +02:00
parent dd16c3944c
commit aa80b4780d
No known key found for this signature in database
GPG key ID: 063CCCAD04182D32

View file

@ -57,6 +57,11 @@ stdenv.mkDerivation rec {
description = "A port of the 7-zip archiver";
platforms = stdenv.lib.platforms.unix;
maintainers = [ stdenv.lib.maintainers.raskin ];
knownVulnerabilities = [
# p7zip is abandoned, according to this thread on its forums:
# https://sourceforge.net/p/p7zip/discussion/383043/thread/fa143cf2/#1817
"p7zip is abandoned and may not receive important security fixes"
];
# RAR code is under non-free UnRAR license, but we remove it
license = if enableUnfree then lib.licenses.unfree else lib.licenses.lgpl2Plus;
};