linux: 5.14.9 -> 5.14.10

(cherry picked from commit 86eb5c0943f42026efed0bcd956094b1463d0281)
This commit is contained in:
TredwellGit 2021-10-07 07:59:08 +00:00 committed by github-actions[bot]
parent 4388bb53c9
commit 2e9cb70a2a

View File

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