From 9dfb717fb9134e25d283a0e4b0bf81249b72adcd Mon Sep 17 00:00:00 2001 From: TredwellGit Date: Fri, 27 Aug 2021 01:13:03 +0000 Subject: [PATCH] linux: 5.13.12 -> 5.13.13 (cherry picked from commit ca0b7b4e189583f44b0e53eb029dab45e45f03c6) --- pkgs/os-specific/linux/kernel/linux-5.13.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/kernel/linux-5.13.nix b/pkgs/os-specific/linux/kernel/linux-5.13.nix index dbbd4a9e876..8e651c0dc2c 100644 --- a/pkgs/os-specific/linux/kernel/linux-5.13.nix +++ b/pkgs/os-specific/linux/kernel/linux-5.13.nix @@ -3,7 +3,7 @@ with lib; buildLinux (args // rec { - version = "5.13.12"; + version = "5.13.13"; # 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,7 +13,7 @@ buildLinux (args // rec { src = fetchurl { url = "mirror://kernel/linux/kernel/v5.x/linux-${version}.tar.xz"; - sha256 = "0948w1zc2gqnl8x60chjqngfzdi0kcxm12i1nx3nx4ksiwj5vc98"; + sha256 = "0d1lr3rivgf9j3bn2a9hpzdf74nq8kybf3rfxxvw68vr1hhd4cam"; }; kernelTests = args.kernelTests or [ nixosTests.kernel-generic.linux_5_13 ];