linux: 4.14.295 -> 4.14.296

This commit is contained in:
Bernardo Meurer 2022-10-26 18:20:24 +01:00
parent 21f94fd487
commit d423ef2ff9
No known key found for this signature in database

View file

@ -3,7 +3,7 @@
with lib;
buildLinux (args // rec {
version = "4.14.295";
version = "4.14.296";
# 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 = "0svalywqmrhav63vw0ns06c25sgyvzwfngljpham3nm7jjxbkk32";
sha256 = "1n4vngqbywwkqrq9fwp3lp4w6d3z588hbnzfngcp07z1ffrcvm9d";
};
} // (args.argsOverride or {}))