linux: 5.14.7 -> 5.14.8

(cherry picked from commit 10fee833c9220242961d9f7b7d3a82c0a3a1a407)
This commit is contained in:
TredwellGit 2021-09-26 17:02:44 +00:00 committed by github-actions[bot]
parent 27e5593772
commit eaccf16f05

View File

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