summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorTim Steinbach <tim@nequissimus.com>2019-11-21 12:49:17 -0500
committerTim Steinbach <tim@nequissimus.com>2019-11-21 13:29:44 -0500
commit9265a8e98d35942e6fcee599b508286c4f8ce652 (patch)
tree5fb50299f6238bccce7fc6ca9d8b2c039d1c0e3a /pkgs
parent74b376f2525cb06e86ee44d5081f463a360961ed (diff)
downloadnixpkgs-9265a8e98d35942e6fcee599b508286c4f8ce652.tar
nixpkgs-9265a8e98d35942e6fcee599b508286c4f8ce652.tar.gz
nixpkgs-9265a8e98d35942e6fcee599b508286c4f8ce652.tar.bz2
nixpkgs-9265a8e98d35942e6fcee599b508286c4f8ce652.tar.lz
nixpkgs-9265a8e98d35942e6fcee599b508286c4f8ce652.tar.xz
nixpkgs-9265a8e98d35942e6fcee599b508286c4f8ce652.tar.zst
nixpkgs-9265a8e98d35942e6fcee599b508286c4f8ce652.zip
linux: 4.19.84 -> 4.19.85
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/os-specific/linux/kernel/linux-4.19.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/os-specific/linux/kernel/linux-4.19.nix b/pkgs/os-specific/linux/kernel/linux-4.19.nix
index 7cc597bef4a..eaf2f7a3ec0 100644
--- a/pkgs/os-specific/linux/kernel/linux-4.19.nix
+++ b/pkgs/os-specific/linux/kernel/linux-4.19.nix
@@ -3,7 +3,7 @@
 with stdenv.lib;
 
 buildLinux (args // rec {
-  version = "4.19.84";
+  version = "4.19.85";
 
   # 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/v4.x/linux-${version}.tar.xz";
-    sha256 = "0q06mhz170x1lkx6c6qdh82rcnsj03q6f2m28aqhmc4wc694m2w6";
+    sha256 = "1dsgbys73jga5h0a9icgif6qbi31g84315zlcdid9bzf1abkbx3v";
   };
 } // (args.argsOverride or {}))