about summary refs log tree commit diff
path: root/pkgs/tools/security
diff options
context:
space:
mode:
authorMartin Weinelt <hexa@darmstadt.ccc.de>2020-05-06 23:18:09 +0200
committerMartin Weinelt <hexa@darmstadt.ccc.de>2020-05-06 23:18:09 +0200
commite24f5eab66a004fcbd770888aba9cd94fcda17c5 (patch)
treec0953c3af0ec27b95cab73edb5a98110ff11a117 /pkgs/tools/security
parentf46cbbc540e74a8b3c8ef3099df4c2a0b434e55b (diff)
downloadnixlib-e24f5eab66a004fcbd770888aba9cd94fcda17c5.tar
nixlib-e24f5eab66a004fcbd770888aba9cd94fcda17c5.tar.gz
nixlib-e24f5eab66a004fcbd770888aba9cd94fcda17c5.tar.bz2
nixlib-e24f5eab66a004fcbd770888aba9cd94fcda17c5.tar.lz
nixlib-e24f5eab66a004fcbd770888aba9cd94fcda17c5.tar.xz
nixlib-e24f5eab66a004fcbd770888aba9cd94fcda17c5.tar.zst
nixlib-e24f5eab66a004fcbd770888aba9cd94fcda17c5.zip
treewide: add CVE identifiers to patches
This allows tools like broken.sh to correctly identify the patched
status.
Diffstat (limited to 'pkgs/tools/security')
-rw-r--r--pkgs/tools/security/super/default.nix8
1 files changed, 5 insertions, 3 deletions
diff --git a/pkgs/tools/security/super/default.nix b/pkgs/tools/security/super/default.nix
index 73321fd618e3..070517310696 100644
--- a/pkgs/tools/security/super/default.nix
+++ b/pkgs/tools/security/super/default.nix
@@ -17,9 +17,11 @@ stdenv.mkDerivation rec {
   '';
 
   patches = [
-   (fetchpatch { url = "https://salsa.debian.org/debian/super/raw/debian/3.30.0-7/debian/patches/14-Fix-unchecked-setuid-call.patch";
-                 sha256 = "08m9hw4kyfjv0kqns1cqha4v5hkgp4s4z0q1rgif1fnk14xh7wqh";
-               })
+    (fetchpatch {
+      name = "CVE-2014-0470.patch";
+      url = "https://salsa.debian.org/debian/super/raw/debian/3.30.0-7/debian/patches/14-Fix-unchecked-setuid-call.patch";
+      sha256 = "08m9hw4kyfjv0kqns1cqha4v5hkgp4s4z0q1rgif1fnk14xh7wqh";
+    })
   ];
 
   NIX_CFLAGS_COMPILE = "-D_GNU_SOURCE";