linux: 4.19.175 -> 4.19.176

This commit is contained in:
Tim Steinbach 2021-02-17 09:35:52 -05:00
parent 5c7d7c32af
commit e64ac44062
No known key found for this signature in database
GPG Key ID: 1B40229F19262402

@ -3,7 +3,7 @@
with lib;
buildLinux (args // rec {
version = "4.19.175";
version = "4.19.176";
# 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 = "099b3dw9rj2z147dpjppd57g24paxw8x4fq1ir1ss5ibzy24pvnc";
sha256 = "0wv0hb25c5jgw6h3zwbb24mfnn19yr0sgcmk1g2xa6x33g9bihz1";
};
} // (args.argsOverride or {}))