linux: 5.10.27 -> 5.10.29

(cherry picked from commit 72fb1c7a91)
This commit is contained in:
Tim Steinbach
2021-04-12 14:23:53 -04:00
committed by Tim Steinbach
parent aad86b89d3
commit d0a2ce40f4

View File

@@ -3,7 +3,7 @@
with stdenv.lib;
buildLinux (args // rec {
version = "5.10.27";
version = "5.10.29";
# 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 = "1nb95ll66kxiz702gs903n3gy5ialz8cin58l19rqaai55kck7fr";
sha256 = "1v79wylb2kd9gadiqf7dr7jcgynr970bbga09mdn940sq536g30m";
};
} // (args.argsOverride or {}))