summary refs log tree commit diff
path: root/pkgs/os-specific/linux
diff options
context:
space:
mode:
authorTredwellGit <tredwell@tutanota.com>2021-07-25 14:51:37 +0000
committerAlyssa Ross <hi@alyssa.is>2021-07-26 15:44:03 +0000
commite1b7816a1f83360ee91b788cc5de3189bda5b624 (patch)
treef24a15f972c064b9a04e62d0716e1b5b0e1ca0f3 /pkgs/os-specific/linux
parent694492c912319e27bc102ab33585aa213db5345f (diff)
downloadnixpkgs-e1b7816a1f83360ee91b788cc5de3189bda5b624.tar
nixpkgs-e1b7816a1f83360ee91b788cc5de3189bda5b624.tar.gz
nixpkgs-e1b7816a1f83360ee91b788cc5de3189bda5b624.tar.bz2
nixpkgs-e1b7816a1f83360ee91b788cc5de3189bda5b624.tar.lz
nixpkgs-e1b7816a1f83360ee91b788cc5de3189bda5b624.tar.xz
nixpkgs-e1b7816a1f83360ee91b788cc5de3189bda5b624.tar.zst
nixpkgs-e1b7816a1f83360ee91b788cc5de3189bda5b624.zip
linux: 5.13.4 -> 5.13.5
Diffstat (limited to 'pkgs/os-specific/linux')
-rw-r--r--pkgs/os-specific/linux/kernel/linux-5.13.nix4
1 files 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 82defad373b..dd97944de78 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.4";
+  version = "5.13.5";
 
   # 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 = "0v3x1q1r0r8lyjg5hsj7yayfxqcgfj01p86ya4s0i9jaclpwv4ki";
+    sha256 = "0lqh7krxxnbrvr3w1kag92z9r4n9436fr6answjkjfbvw0z7q74m";
   };
 
   kernelTests = args.kernelTests or [ nixosTests.kernel-generic.linux_5_13 ];