about summary refs log tree commit diff
path: root/pkgs/os-specific
diff options
context:
space:
mode:
authorTredwellGit <tredwell@tutanota.com>2022-03-27 10:33:46 +0000
committerTredwellGit <tredwell@tutanota.com>2022-03-27 10:33:46 +0000
commit0cbdca520de04ca16a6c2b5b76ce0ee72f2ba970 (patch)
tree8e3e239f82638c8cc8fa468a282c554e21511950 /pkgs/os-specific
parenta8443f0ce49e841b1c6f06c6fd42646263abca50 (diff)
downloadnixlib-0cbdca520de04ca16a6c2b5b76ce0ee72f2ba970.tar
nixlib-0cbdca520de04ca16a6c2b5b76ce0ee72f2ba970.tar.gz
nixlib-0cbdca520de04ca16a6c2b5b76ce0ee72f2ba970.tar.bz2
nixlib-0cbdca520de04ca16a6c2b5b76ce0ee72f2ba970.tar.lz
nixlib-0cbdca520de04ca16a6c2b5b76ce0ee72f2ba970.tar.xz
nixlib-0cbdca520de04ca16a6c2b5b76ce0ee72f2ba970.tar.zst
nixlib-0cbdca520de04ca16a6c2b5b76ce0ee72f2ba970.zip
linux: 5.16.16 -> 5.16.17
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 63dc8d0463a9..03947d5b1f84 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.16";
+  version = "5.16.17";
 
   # 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 = "13qk6cjnjwgnxj25mphyv08pjf1sqz7bxxrr3fpl8gz3aghdd9yc";
+    sha256 = "1z7i6z36rs777xiff5x3qjdc02x91n9ibf7rqr003ws7bf84vvnf";
   };
 } // (args.argsOverride or { }))