linux: 5.15.16 -> 5.15.17

This commit is contained in:
TredwellGit 2022-01-27 11:48:18 +00:00
parent b14eceedca
commit 532ede5712

View File

@ -3,7 +3,7 @@
with lib;
buildLinux (args // rec {
version = "5.15.16";
version = "5.15.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/v5.x/linux-${version}.tar.xz";
sha256 = "150pzxra564z9xaaclmbbd29x4x9il8y78zz7szi50lzx0a0l2ms";
sha256 = "1pmbf3xin533z4jpqj8p733ii5zk0k36v4cpzl14k62rrk0gb1r7";
};
} // (args.argsOverride or { }))