linux: 6.0.16 -> 6.0.17

(cherry picked from commit 4f65c169c1)
This commit is contained in:
Bernardo Meurer
2023-01-04 12:35:26 -03:00
committed by Vladimír Čunát
parent f839facf21
commit e4e2f54efd

View File

@@ -3,7 +3,7 @@
with lib;
buildLinux (args // rec {
version = "6.0.16";
version = "6.0.17";
# 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/v6.x/linux-${version}.tar.xz";
sha256 = "1r2wf3hf7yxl7lxma7plyi8pk3dmlsrpm763rf0g1h8ilsy72844";
sha256 = "020xrv9449gd0jnfgi0sb69bgs2p9sd49dghmd3bnnal584r5vm7";
};
} // (args.argsOverride or { }))