about summary refs log tree commit diff
path: root/pkgs/os-specific
diff options
context:
space:
mode:
authorTim Steinbach <tim@nequissimus.com>2019-10-07 17:54:00 -0400
committerTim Steinbach <tim@nequissimus.com>2019-10-07 17:54:00 -0400
commit3610e490b34375eb142e1100f7117a2dc1030c9e (patch)
tree960be9ddef44b86ad955ed5e0e89fc1f7ccb009b /pkgs/os-specific
parent59dc2fa757abb458aaac87b1a35156b3cd3bdc3b (diff)
downloadnixlib-3610e490b34375eb142e1100f7117a2dc1030c9e.tar
nixlib-3610e490b34375eb142e1100f7117a2dc1030c9e.tar.gz
nixlib-3610e490b34375eb142e1100f7117a2dc1030c9e.tar.bz2
nixlib-3610e490b34375eb142e1100f7117a2dc1030c9e.tar.lz
nixlib-3610e490b34375eb142e1100f7117a2dc1030c9e.tar.xz
nixlib-3610e490b34375eb142e1100f7117a2dc1030c9e.tar.zst
nixlib-3610e490b34375eb142e1100f7117a2dc1030c9e.zip
linux: 5.2.19 -> 5.2.20
Diffstat (limited to 'pkgs/os-specific')
-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 315c8caaf593..6db0c8471df2 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.19";
+  version = "5.2.20";
 
   # modDirVersion needs to be x.y.z, will automatically add .0 if needed
   modDirVersion = if (modDirVersionArg == null) then concatStringsSep "." (take 3 (splitVersion "${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 = "12mi857lyd5vj8qhj2f505hqnwzsnd829hxd78n9kk88iv1f966y";
+    sha256 = "0sddasxka08c1qjhbd9w4z7rzprfly2i67q4iwppbldngi4y48di";
   };
 } // (args.argsOverride or {}))