linux: 4.14.262 -> 4.14.263

This commit is contained in:
TredwellGit 2022-01-27 11:47:44 +00:00
parent 3d3797e30f
commit 388633adc5

View File

@ -3,7 +3,7 @@
with lib;
buildLinux (args // rec {
version = "4.14.262";
version = "4.14.263";
# 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 = "05yl51r5n3q9l8pq6azx3bbl69l79lk8vkdivy3cvgzdh59pizac";
sha256 = "0bn17p1mmkc37bqv7bvksli4xpyp660mbcjm6jmh6k348i1bfwqf";
};
} // (args.argsOverride or {}))