linux: 4.14.293 -> 4.14.294

This commit is contained in:
Maximilian Bosch 2022-09-26 13:22:43 +02:00
parent ef395e396b
commit 047d538aea
No known key found for this signature in database
GPG key ID: 9A6EEA275CA5BE0A

View file

@ -3,7 +3,7 @@
with lib;
buildLinux (args // rec {
version = "4.14.293";
version = "4.14.294";
# 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 = "047gl9nqrvpi9jaxlmhfnx848qvnrhf13710ka8fwn3lyv22k342";
sha256 = "069i11hv4fhwc9dirqbag1g1k3fn21wzpfggah4f1a41whf98apy";
};
} // (args.argsOverride or {}))