about summary refs log tree commit diff
path: root/pkgs/os-specific
diff options
context:
space:
mode:
authorTim Steinbach <tim@nequissimus.com>2020-02-10 07:16:13 -0500
committerTim Steinbach <tim@nequissimus.com>2020-02-10 07:23:07 -0500
commit54c0c2ee70c67bbedca6e3e1a20586960ed799b8 (patch)
tree86c653a606e890b8fc4fe1cebe3d09f4a09f0af4 /pkgs/os-specific
parent854eb8f3ef7fab408a8e487c95d34ca7447f3ab1 (diff)
downloadnixlib-54c0c2ee70c67bbedca6e3e1a20586960ed799b8.tar
nixlib-54c0c2ee70c67bbedca6e3e1a20586960ed799b8.tar.gz
nixlib-54c0c2ee70c67bbedca6e3e1a20586960ed799b8.tar.bz2
nixlib-54c0c2ee70c67bbedca6e3e1a20586960ed799b8.tar.lz
nixlib-54c0c2ee70c67bbedca6e3e1a20586960ed799b8.tar.xz
nixlib-54c0c2ee70c67bbedca6e3e1a20586960ed799b8.tar.zst
nixlib-54c0c2ee70c67bbedca6e3e1a20586960ed799b8.zip
linux: 4.19.101 -> 4.19.102
Diffstat (limited to 'pkgs/os-specific')
-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 11751ca880b7..f4c3ac52c9c7 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.101";
+  version = "4.19.102";
 
   # 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 = "1i4bkwankl5q95kgqmmyzdkwmf3b8ppkb8ild9bw12mkpmm1a9my";
+    sha256 = "05g0gkwvlwfx1wlinnwm3ryq7fblmxjzhp12g6vx2jbvvn486bih";
   };
 } // (args.argsOverride or {}))