linux: 4.14.220 -> 4.14.221

This commit is contained in:
Tim Steinbach 2021-02-10 09:53:52 -05:00 committed by Tim Steinbach
parent 4dae2acb80
commit 1445962d61

View file

@ -3,7 +3,7 @@
with lib;
buildLinux (args // rec {
version = "4.14.220";
version = "4.14.221";
# 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 = "1qip0c8nvfximgg4fj9xai741cgvi9f141bsps3zmrryjd796i6h";
sha256 = "1sf7sagy88p20310klbxdacyalg3q6zg870c709nz17lbw3m88nf";
};
} // (args.argsOverride or {}))