From ce9fcd89ab42332ccf0cb5e19a43240f1fbb2616 Mon Sep 17 00:00:00 2001 From: Tim Steinbach Date: Fri, 3 Sep 2021 06:53:27 -0400 Subject: [PATCH] linux: 5.13.13 -> 5.13.14 (cherry picked from commit ff64785c049beaaa8b1c16d5ffe322ea8d68bb62) --- 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 8e651c0dc2c..d02a23c0c74 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.13"; + version = "5.13.14"; # 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 = "0d1lr3rivgf9j3bn2a9hpzdf74nq8kybf3rfxxvw68vr1hhd4cam"; + sha256 = "06lbjsbr86qa8yai5gfclbfxvcqsw33kxj9b4r93hh6z1wajmx82"; }; kernelTests = args.kernelTests or [ nixosTests.kernel-generic.linux_5_13 ];