linux: 4.14.222 -> 4.14.224

This commit is contained in:
Tim Steinbach 2021-03-08 12:06:12 -05:00 committed by Tim Steinbach
parent b19364e5de
commit 196b232131

View file

@ -3,7 +3,7 @@
with lib;
buildLinux (args // rec {
version = "4.14.222";
version = "4.14.224";
# 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/v4.x/linux-${version}.tar.xz";
sha256 = "0i67va37ca3avalgh2ab797c6w2v0h41y1mh4fql73lz7nq84h3k";
sha256 = "1x8wyj28zcx6nn3mkfvs7aywrq1rd8xam5f3r02mynb09kn5hdnq";
};
} // (args.argsOverride or {}))