about summary refs log tree commit diff
path: root/pkgs/tools/archivers/unarj/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/tools/archivers/unarj/default.nix')
-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;
   };
 }