linux: 5.16.12 -> 5.16.13

This commit is contained in:
TredwellGit 2022-03-08 19:23:19 +00:00
parent 639fd7c52a
commit d7d0cf60f9

View file

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