linux: 5.14.11 -> 5.14.12

(cherry picked from commit 39189bc4f0135bb7fb6787018bbd69393cabcaaa)
This commit is contained in:
TredwellGit 2021-10-13 13:06:07 +00:00 committed by github-actions[bot]
parent 0ecbad5a42
commit 21274608a8
1 changed files with 2 additions and 2 deletions

View File

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