linux: 5.15.21 -> 5.15.22

This commit is contained in:
TredwellGit 2022-02-08 23:33:03 +00:00
parent 0de53960d0
commit 1bc4054d28

View file

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