linux: 5.16.1 -> 5.16.2

This commit is contained in:
TredwellGit 2022-01-20 19:29:51 +00:00
parent fea530a537
commit 581019ba48

View File

@ -3,7 +3,7 @@
with lib;
buildLinux (args // rec {
version = "5.16.1";
version = "5.16.2";
# 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 = "0i9mfapsyf9lp8j0g329lgwf6kyi61a00al0hdrfd8bf3hikdgy7";
sha256 = "0i1vcv2zi80ixmgjdcq6yk8qhwaqlbbmmrq0prxk41339lx87zh9";
};
} // (args.argsOverride or { }))