linux: 5.4.215 -> 5.4.216

This commit is contained in:
Maximilian Bosch 2022-10-05 18:35:14 +02:00
parent 23bda1f2db
commit a8ad1882c1
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.215";
version = "5.4.216";
# 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 = "1gafnf9gbsfzvp9jq6y8qhpvas5cv9y0m9bad2sg55sjlb1zfard";
sha256 = "19vyxa0yzdf4w48jamjfz6kpiaaa7mjjz5gs2awckzilfc0n4pyf";
};
} // (args.argsOverride or {}))