1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

linux: 5.10.71 -> 5.10.72

This commit is contained in:
TredwellGit 2021-10-12 04:04:56 +00:00 committed by Tim Steinbach
parent 049968322b
commit 2363ead003

View file

@ -3,7 +3,7 @@
with lib;
buildLinux (args // rec {
version = "5.10.71";
version = "5.10.72";
# 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 = "15x4jbwy6j78ss31avdl7nr0mw4w6a1y6c6dyljh6gwngp98irh2";
sha256 = "0z2cp8gqnbv7iz8kb5ydfmk019m0gds8wwvwc6kccsk4wypkbmml";
};
} // (args.argsOverride or {}))