linux: 4.14.215 -> 4.14.216

This commit is contained in:
Tim Steinbach 2021-01-18 10:57:41 -05:00
parent 2abfc93a68
commit d15ed07e0a
No known key found for this signature in database
GPG key ID: 1B40229F19262402

View file

@ -3,7 +3,7 @@
with lib;
buildLinux (args // rec {
version = "4.14.215";
version = "4.14.216";
# 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 = "1ni6p485dszi365rfflrwmjl6arbkhfvl1zm7p99vcv11hllx14s";
sha256 = "19dvxmqvs1ysl127zqdcqq2pyf7370jj66fd73zdx6ya2pplz1mp";
};
} // (args.argsOverride or {}))