linux: 5.17.3 -> 5.17.4

This commit is contained in:
Maximilian Bosch 2022-04-23 13:35:57 +02:00
parent 55f39cb81e
commit 8a53f9a72a
No known key found for this signature in database
GPG Key ID: 091DBF4D1FC46B8E

View File

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