linux: 5.16.16 -> 5.16.17

This commit is contained in:
TredwellGit 2022-03-27 10:33:46 +00:00
parent a8443f0ce4
commit 0cbdca520d

View File

@ -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 { }))