linux: 4.14.300 -> 4.14.301

This commit is contained in:
Bernardo Meurer 2022-12-08 13:49:19 -03:00
parent 4cc7973ae6
commit ee48569ebf
No known key found for this signature in database

View File

@ -3,7 +3,7 @@
with lib;
buildLinux (args // rec {
version = "4.14.300";
version = "4.14.301";
# 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 = "047vmh09icm45g7mnmdvyj9cam7747bcpah1s7n9dm5i2j2f906y";
sha256 = "16zrpfadsnznpl37crbq5g1hz1ch0zfp2a75yzlqy2fs0f7fxlmc";
};
} // (args.argsOverride or {}))