linux: 4.14.216 -> 4.14.217

This commit is contained in:
Tim Steinbach 2021-01-24 12:21:57 -05:00 committed by Tim Steinbach
parent dece3e543e
commit e6292e3721

View file

@ -3,7 +3,7 @@
with lib;
buildLinux (args // rec {
version = "4.14.216";
version = "4.14.217";
# 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/v4.x/linux-${version}.tar.xz";
sha256 = "19dvxmqvs1ysl127zqdcqq2pyf7370jj66fd73zdx6ya2pplz1mp";
sha256 = "04adj8x7p1has4mh8ygxhqgwb1i08fz9izqw1y6xj5hh8cjnm8v2";
};
} // (args.argsOverride or {}))