linux: 5.10.7 -> 5.10.8

This commit is contained in:
Tim Steinbach 2021-01-18 10:58:24 -05:00
parent 44b24624d5
commit 370ad71e2a
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 = "5.10.7";
version = "5.10.8";
# 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/v5.x/linux-${version}.tar.xz";
sha256 = "1gpsdxq2gx40gpmm0zya0wxd7fdflbaq9j1j0hbffahgz44nxgsc";
sha256 = "1v83wm8xbhq1sgn7c84zi7l40vmd9k1gb653b686jp8n4na85z2w";
};
} // (args.argsOverride or {}))