linux: 5.14.15 -> 5.14.16

(cherry picked from commit 104950bafddf4da4c6c6afd6d95ca96ffafe065b)
This commit is contained in:
TredwellGit 2021-11-05 17:24:53 +00:00 committed by github-actions[bot]
parent bc6402b439
commit 2000097db4
1 changed files with 2 additions and 2 deletions

View File

@ -3,7 +3,7 @@
with lib;
buildLinux (args // rec {
version = "5.14.15";
version = "5.14.16";
# 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 = "01m4qw1z7xn3ngsbm1bvcvikqpkjjr9n8585556wkmz9d469mwvl";
sha256 = "005wis2y5dhksb6n0r4p3xjldppmdnd360dhxa04rfc4z2qwn3f3";
};
} // (args.argsOverride or { }))