summary refs log tree commit diff
path: root/pkgs/os-specific
diff options
context:
space:
mode:
authorTredwellGit <tredwell@tutanota.com>2022-03-12 07:19:50 +0000
committerTredwellGit <tredwell@tutanota.com>2022-03-12 07:19:50 +0000
commit51d907345ac12cd6b27e5d436a2f2d317cefbc69 (patch)
tree5b1fb0cec1e327489ededa068298851c5d0c0011 /pkgs/os-specific
parenteafbf2255890bf2be0b5d2ab33d2c37309b0ec40 (diff)
downloadnixpkgs-51d907345ac12cd6b27e5d436a2f2d317cefbc69.tar
nixpkgs-51d907345ac12cd6b27e5d436a2f2d317cefbc69.tar.gz
nixpkgs-51d907345ac12cd6b27e5d436a2f2d317cefbc69.tar.bz2
nixpkgs-51d907345ac12cd6b27e5d436a2f2d317cefbc69.tar.lz
nixpkgs-51d907345ac12cd6b27e5d436a2f2d317cefbc69.tar.xz
nixpkgs-51d907345ac12cd6b27e5d436a2f2d317cefbc69.tar.zst
nixpkgs-51d907345ac12cd6b27e5d436a2f2d317cefbc69.zip
linux: 5.16.13 -> 5.16.14
Diffstat (limited to 'pkgs/os-specific')
-rw-r--r--pkgs/os-specific/linux/kernel/linux-5.16.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/os-specific/linux/kernel/linux-5.16.nix b/pkgs/os-specific/linux/kernel/linux-5.16.nix
index 43aca96805e..94b61a1ba93 100644
--- a/pkgs/os-specific/linux/kernel/linux-5.16.nix
+++ b/pkgs/os-specific/linux/kernel/linux-5.16.nix
@@ -3,7 +3,7 @@
 with lib;
 
 buildLinux (args // rec {
-  version = "5.16.13";
+  version = "5.16.14";
 
   # 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 = "1fvz4v3mcm9yxfak6mshl764piadgz46y71wprb85b1shc09i2ig";
+    sha256 = "1xkl0mfjby7w6r3fqyjds94h2lmc77nzp970w7wz1rfmb63ab2vs";
   };
 } // (args.argsOverride or { }))