summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorTim Steinbach <tim@nequissimus.com>2021-01-18 10:57:54 -0500
committerTim Steinbach <tim@nequissimus.com>2021-01-18 12:46:30 -0500
commit2818d367eaa7574efc10101117e298348bee056c (patch)
tree82fc5314f9428bbe27a9d8be0cc663b0e1fd3bdb /pkgs
parentd15ed07e0ab78001cff410781ea727f0678f0564 (diff)
downloadnixpkgs-2818d367eaa7574efc10101117e298348bee056c.tar
nixpkgs-2818d367eaa7574efc10101117e298348bee056c.tar.gz
nixpkgs-2818d367eaa7574efc10101117e298348bee056c.tar.bz2
nixpkgs-2818d367eaa7574efc10101117e298348bee056c.tar.lz
nixpkgs-2818d367eaa7574efc10101117e298348bee056c.tar.xz
nixpkgs-2818d367eaa7574efc10101117e298348bee056c.tar.zst
nixpkgs-2818d367eaa7574efc10101117e298348bee056c.zip
linux: 4.19.167 -> 4.19.168
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 f432b38f9c8..8ed7ed65b15 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 lib;
 
 buildLinux (args // rec {
-  version = "4.19.167";
+  version = "4.19.168";
 
   # 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 = "00gddgr1jj9zkd10mbbkanfkgpqi2jqszibq80rc9bbmgiknfb1i";
+    sha256 = "1whkqklqj8rz9lv88aldvwkwnb9xvg0njdbcrk56r7z6f9zkhnmm";
   };
 } // (args.argsOverride or {}))