linux: 4.19.253 -> 4.19.254

This commit is contained in:
Maximilian Bosch 2022-07-29 19:09:22 +02:00
parent be408ef5bb
commit 310ce04485
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.19.253";
version = "4.19.254";
# 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 = "1jc2j0wskgr1bdzpz6sn2bvafpviiin6mwr93yykcczzfjijr8yz";
sha256 = "1rd40wmdaymbly2zvf60mjqsflkd4n1y232qz0ixn1rfl28yz62i";
};
} // (args.argsOverride or {}))