summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Steinbach <tim@nequissimus.com>2019-10-12 11:05:09 -0400
committerTim Steinbach <tim@nequissimus.com>2019-10-12 11:20:59 -0400
commite758436f98683a77b8cd119886c9ded8b8d80759 (patch)
tree7e8239d7601edb931c31ca4c082e12120e642d06
parentlinux: 4.19.78 -> 4.19.79 (diff)
downloadnixpkgs-e758436f98683a77b8cd119886c9ded8b8d80759.tar.gz
linux: 5.2.20 -> 5.2.21
-rw-r--r--pkgs/os-specific/linux/kernel/linux-5.2.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/os-specific/linux/kernel/linux-5.2.nix b/pkgs/os-specific/linux/kernel/linux-5.2.nix
index d5dd2ace9c83..4e54a66412c9 100644
--- a/pkgs/os-specific/linux/kernel/linux-5.2.nix
+++ b/pkgs/os-specific/linux/kernel/linux-5.2.nix
@@ -3,7 +3,7 @@
with stdenv.lib;
buildLinux (args // rec {
- version = "5.2.20";
+ version = "5.2.21";
# modDirVersion needs to be x.y.z, will automatically add .0 if needed
modDirVersion = if (modDirVersionArg == null) then concatStrings (intersperse "." (take 3 (splitString "." "${version}.0"))) else modDirVersionArg;
@@ -13,6 +13,6 @@ buildLinux (args // rec {
src = fetchurl {
url = "mirror://kernel/linux/kernel/v5.x/linux-${version}.tar.xz";
- sha256 = "0sddasxka08c1qjhbd9w4z7rzprfly2i67q4iwppbldngi4y48di";
+ sha256 = "0f1mick15d0m7yhhhdwai03wmczvkm9cg38w2ivgmgysfpzy73ls";
};
} // (args.argsOverride or {}))