about summary refs log tree commit diff
path: root/pkgs/applications/networking/irc
diff options
context:
space:
mode:
authorArtturi <Artturin@artturin.com>2022-05-05 20:24:55 +0300
committerGitHub <noreply@github.com>2022-05-05 20:24:55 +0300
commitb0b8435c372ffd9760fc115bc6bfb66f709348a4 (patch)
tree96f13a4dce2e9253f661a448b48b8f04da447cbb /pkgs/applications/networking/irc
parent180879172ef21dcf8bb6e096ed9f1ad288d44975 (diff)
parent22419c93cd3a2290a6d53b70201a702847e47275 (diff)
Merge pull request #167987 from oxzi/weechat-otr-fix-build-and-deprecation
weechat-otr: Fix build and knownVulnerabilities
Diffstat (limited to 'pkgs/applications/networking/irc')
-rw-r--r--pkgs/applications/networking/irc/weechat/scripts/weechat-otr/default.nix7
1 files changed, 7 insertions, 0 deletions
diff --git a/pkgs/applications/networking/irc/weechat/scripts/weechat-otr/default.nix b/pkgs/applications/networking/irc/weechat/scripts/weechat-otr/default.nix
index 987271e4ffa29..fd5f376ad2636 100644
--- a/pkgs/applications/networking/irc/weechat/scripts/weechat-otr/default.nix
+++ b/pkgs/applications/networking/irc/weechat/scripts/weechat-otr/default.nix
@@ -24,6 +24,9 @@ let
 
     buildInputs = [ gmp ];
 
+    # Tests are relying on old Python 2 modules.
+    doCheck = false;
+
     preConfigure = ''
       sed -i 's,/usr/include,/no-such-dir,' configure
       sed -i "s!,'/usr/include/'!!" setup.py
@@ -66,5 +69,9 @@ in stdenv.mkDerivation rec {
     license = licenses.gpl3;
     maintainers = with maintainers; [ oxzi ];
     description = "WeeChat script for Off-the-Record messaging";
+    knownVulnerabilities = [
+      "There is no upstream release since 2018-03."
+      "Utilizes deprecated and vulnerable pycrypto library with Debian patches from 2020-04."
+    ];
   };
 }