about summary refs log tree commit diff
path: root/pkgs/tools/archivers
diff options
context:
space:
mode:
authorTobias Geerinckx-Rice <me@tobias.gr>2016-05-08 03:29:25 +0200
committerTobias Geerinckx-Rice <me@tobias.gr>2016-05-08 03:29:45 +0200
commit666250bd3bc35abcb3cbf92cadbea39fa1e1b41a (patch)
tree739243e9b8d4f444a6f3dc74efe7eeb179368477 /pkgs/tools/archivers
parentb6092775cb7e4eb0ea047106037eb524146018fa (diff)
downloadnixlib-666250bd3bc35abcb3cbf92cadbea39fa1e1b41a.tar
nixlib-666250bd3bc35abcb3cbf92cadbea39fa1e1b41a.tar.gz
nixlib-666250bd3bc35abcb3cbf92cadbea39fa1e1b41a.tar.bz2
nixlib-666250bd3bc35abcb3cbf92cadbea39fa1e1b41a.tar.lz
nixlib-666250bd3bc35abcb3cbf92cadbea39fa1e1b41a.tar.xz
nixlib-666250bd3bc35abcb3cbf92cadbea39fa1e1b41a.tar.zst
nixlib-666250bd3bc35abcb3cbf92cadbea39fa1e1b41a.zip
unarj: mark as broken
And ‘maintain’ to help keep an eye on it.

Closes #7332.
Diffstat (limited to 'pkgs/tools/archivers')
-rw-r--r--pkgs/tools/archivers/unarj/default.nix7
1 files changed, 5 insertions, 2 deletions
diff --git a/pkgs/tools/archivers/unarj/default.nix b/pkgs/tools/archivers/unarj/default.nix
index c8e4e92a404b..f3c566596c46 100644
--- a/pkgs/tools/archivers/unarj/default.nix
+++ b/pkgs/tools/archivers/unarj/default.nix
@@ -14,8 +14,11 @@ stdenv.mkDerivation rec {
     sed -i -e s,/usr/local/bin,$out/bin, Makefile
   '';
 
-  meta = {
+  meta = with stdenv.lib; {
     description = "Unarchiver of ARJ files";
-    license = stdenv.lib.licenses.free;
+    license = licenses.free;
+    maintainers = with maintainers; [ nckx ];
+    # Vulnerable to CVE-2015-0557 & possibly CVE-2015-0556, CVE-2015-2782:
+    broken = true;
   };
 }