summary refs log tree commit diff
path: root/pkgs/os-specific/linux/kernel
diff options
context:
space:
mode:
authorTim Steinbach <tim@nequissimus.com>2020-08-26 13:28:55 -0400
committerTim Steinbach <tim@nequissimus.com>2020-08-26 13:54:28 -0400
commitc49e127ce96af7d84f3378fc87559b53a4f909ef (patch)
tree56352310499d087c675ab13d4c60121f0b3a3861 /pkgs/os-specific/linux/kernel
parentd0ad3119865b68a72236140598a8df8eb908a6cf (diff)
downloadnixpkgs-c49e127ce96af7d84f3378fc87559b53a4f909ef.tar
nixpkgs-c49e127ce96af7d84f3378fc87559b53a4f909ef.tar.gz
nixpkgs-c49e127ce96af7d84f3378fc87559b53a4f909ef.tar.bz2
nixpkgs-c49e127ce96af7d84f3378fc87559b53a4f909ef.tar.lz
nixpkgs-c49e127ce96af7d84f3378fc87559b53a4f909ef.tar.xz
nixpkgs-c49e127ce96af7d84f3378fc87559b53a4f909ef.tar.zst
nixpkgs-c49e127ce96af7d84f3378fc87559b53a4f909ef.zip
linux: 4.19.141 -> 4.19.142
Diffstat (limited to 'pkgs/os-specific/linux/kernel')
-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 e0c9c69061a..2eb697be684 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.141";
+  version = "4.19.142";
 
   # 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 = "0511vb9rfpy5l6cz69v0v97rw2rk2pscc4hkz2pfmgikagm1shm4";
+    sha256 = "19372sri4962dqf5rbr211lrfpckmj11kxsginfcwwid4hfdn4k9";
   };
 } // (args.argsOverride or {}))