linux: 4.14.264 -> 4.14.265

This commit is contained in:
TredwellGit 2022-02-08 23:32:35 +00:00
parent 363ef08971
commit 8cb0337364

View file

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