linux: 5.4.207 -> 5.4.208

This commit is contained in:
Maximilian Bosch 2022-07-29 19:10:46 +02:00
parent 37f0f42f70
commit d060a1191b
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 = "5.4.207";
version = "5.4.208";
# 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/v5.x/linux-${version}.tar.xz";
sha256 = "1wwpd26qhv6i00p0yxjisns6qiz9bfrxvn1xb4ylwr8ls7zyx78v";
sha256 = "0i0fxv04r6g5ha84chih5cqsy59cv67pjxp8zfrdk1qapwddyvgh";
};
} // (args.argsOverride or {}))