linux: 5.14.8 -> 5.14.9

(cherry picked from commit b540e8b5a9082f8150fb3de37e793bc5cef25388)
This commit is contained in:
TredwellGit 2021-10-01 04:16:26 +00:00 committed by github-actions[bot]
parent 433135b468
commit c124a09c04
1 changed files with 2 additions and 2 deletions

View File

@ -3,7 +3,7 @@
with lib;
buildLinux (args // rec {
version = "5.14.8";
version = "5.14.9";
# 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 = "12cvvrxky92z1g9kj7pgb83yg9pnv2fvi7jf0pyagvqjqladl3na";
sha256 = "1rl77k40xp9j0y8q5bgmhfmwiwbrdxjcsaw8dris456mjbdhg3xs";
};
} // (args.argsOverride or { }))