linux: 5.15.13 -> 5.15.14

This commit is contained in:
TredwellGit 2022-01-11 16:37:49 +00:00
parent caa8c4963d
commit 4cf69dc13a

View File

@ -3,7 +3,7 @@
with lib;
buildLinux (args // rec {
version = "5.15.13";
version = "5.15.14";
# 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 = "0shmrx33crnhi0wr5v6ly85pza1mmdcm8arkrdzf6plz5xm1n4qa";
sha256 = "0kbayz4k72hx9b0l9yz2mbgb2xpnpm13snms06r2absv3gkv9wid";
};
} // (args.argsOverride or { }))