linux: 4.19.254 -> 4.19.255

This commit is contained in:
Bernardo Meurer 2022-08-16 11:30:38 -04:00
parent 3c79b71732
commit dc78e9719c
No known key found for this signature in database
GPG Key ID: F4C0D53B8D14C246

View File

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