summary refs log tree commit diff
path: root/pkgs/os-specific/linux
diff options
context:
space:
mode:
authorTim Steinbach <tim@nequissimus.com>2018-02-28 10:40:06 -0500
committerTim Steinbach <tim@nequissimus.com>2018-02-28 10:40:06 -0500
commite1410a6792c1a507b70d0aa35629de814f8e9b47 (patch)
tree215aaaf78f50d5f6fc2167131a24ab6ff21678c6 /pkgs/os-specific/linux
parent18438877d667e4dab6e05df73f50017ae9d202cc (diff)
downloadnixlib-e1410a6792c1a507b70d0aa35629de814f8e9b47.tar
nixlib-e1410a6792c1a507b70d0aa35629de814f8e9b47.tar.gz
nixlib-e1410a6792c1a507b70d0aa35629de814f8e9b47.tar.bz2
nixlib-e1410a6792c1a507b70d0aa35629de814f8e9b47.tar.lz
nixlib-e1410a6792c1a507b70d0aa35629de814f8e9b47.tar.xz
nixlib-e1410a6792c1a507b70d0aa35629de814f8e9b47.tar.zst
nixlib-e1410a6792c1a507b70d0aa35629de814f8e9b47.zip
linux: Remove 4.13.x
Diffstat (limited to 'pkgs/os-specific/linux')
-rw-r--r--pkgs/os-specific/linux/kernel/linux-4.13.nix17
1 files changed, 0 insertions, 17 deletions
diff --git a/pkgs/os-specific/linux/kernel/linux-4.13.nix b/pkgs/os-specific/linux/kernel/linux-4.13.nix
deleted file mode 100644
index e89222b2c629..000000000000
--- a/pkgs/os-specific/linux/kernel/linux-4.13.nix
+++ /dev/null
@@ -1,17 +0,0 @@
-{ stdenv, buildPackages, hostPlatform, fetchurl, perl, buildLinux, ... } @ args:
-
-buildLinux (args // rec {
-  version = "4.13.16";
-  extraMeta.branch = "4.13";
-
-  # TODO: perhaps try being more concrete (ideally CVE numbers).
-  extraMeta.knownVulnerabilities = [
-    "ALSA: usb-audio: Fix potential out-of-bound access at parsing SU"
-    "eCryptfs: use after free in ecryptfs_release_messaging()"
-  ];
-
-  src = fetchurl {
-    url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz";
-    sha256 = "0cf7prqzl1ajbgl98w0symdyn0k5wl5xaf1l5ldgy6l083yg69dh";
-  };
-} // (args.argsOverride or {}))