linux: 4.19.222 -> 4.19.223

This commit is contained in:
TredwellGit 2021-12-29 16:39:09 +00:00
parent e3d0e08e8e
commit e1dd7fb45f

View file

@ -3,7 +3,7 @@
with lib;
buildLinux (args // rec {
version = "4.19.222";
version = "4.19.223";
# 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 = "0f48c6lv0nqggn5rn1wfnlf3xjz6ckmzvjqbhpyar43x7l687c4p";
sha256 = "1cnjk49g8sxsbzk375ji47lnx36drqh1x2pbfiqdwgrbjcb043sz";
};
} // (args.argsOverride or {}))