linux: 4.14.219 -> 4.14.220

This commit is contained in:
Tim Steinbach 2021-02-08 15:27:47 -05:00
parent 27d21f84b6
commit bed08131cd
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.219";
version = "4.14.220";
# 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 = "1p81p2g1dax225mbc704g1yl96i93nq19j9fpkrzr4f066kwmvkm";
sha256 = "1qip0c8nvfximgg4fj9xai741cgvi9f141bsps3zmrryjd796i6h";
};
} // (args.argsOverride or {}))