linux: 5.10.60 -> 5.10.61

This commit is contained in:
TredwellGit 2021-08-27 01:12:51 +00:00 committed by Tim Steinbach
parent 12ea01bac9
commit 6c457d29b8

View File

@ -3,7 +3,7 @@
with lib;
buildLinux (args // rec {
version = "5.10.60";
version = "5.10.61";
# 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 = "13gpamqj0shvad4nd9v11iv8qdfbjgb242nbvcim2z3c7xszfvv9";
sha256 = "1lci78584c0rg5m5rkylssppnv001pzh4769m9mds4fdqn6f7sl2";
};
} // (args.argsOverride or {}))