linux: 5.16.4 -> 5.16.5

This commit is contained in:
TredwellGit 2022-02-03 11:37:58 +00:00
parent af5cda7f79
commit 5aeb99768b

View File

@ -3,7 +3,7 @@
with lib;
buildLinux (args // rec {
version = "5.16.4";
version = "5.16.5";
# 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 = "1gsh7gj5k6kqf5sf26b26rr0idgxdw4xxcba2qaajddyp502mqrb";
sha256 = "1ay7y7c2bdgvqd7hw8l9jxzx9m2rd5drdakjqnblz4w9sbcyvbpc";
};
} // (args.argsOverride or { }))