linux: 5.15.14 -> 5.15.15

This commit is contained in:
TredwellGit 2022-01-19 01:34:15 +00:00
parent 0b04210a04
commit 05ad09bd54

View File

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