summary refs log tree commit diff
path: root/pkgs/os-specific/linux
diff options
context:
space:
mode:
authorTredwellGit <tredwell@tutanota.com>2021-07-20 19:06:49 +0000
committerTredwellGit <tredwell@tutanota.com>2021-07-20 19:06:49 +0000
commit5b3a23670c3bdbd3a4ad7e7fe62c4e4c9e0132d9 (patch)
tree58b617fc55858a7796d3b9296b1c0ef56cb8a224 /pkgs/os-specific/linux
parenta703195804f27720118120bf80fda99531969fe2 (diff)
downloadnixpkgs-5b3a23670c3bdbd3a4ad7e7fe62c4e4c9e0132d9.tar
nixpkgs-5b3a23670c3bdbd3a4ad7e7fe62c4e4c9e0132d9.tar.gz
nixpkgs-5b3a23670c3bdbd3a4ad7e7fe62c4e4c9e0132d9.tar.bz2
nixpkgs-5b3a23670c3bdbd3a4ad7e7fe62c4e4c9e0132d9.tar.lz
nixpkgs-5b3a23670c3bdbd3a4ad7e7fe62c4e4c9e0132d9.tar.xz
nixpkgs-5b3a23670c3bdbd3a4ad7e7fe62c4e4c9e0132d9.tar.zst
nixpkgs-5b3a23670c3bdbd3a4ad7e7fe62c4e4c9e0132d9.zip
linux: 5.13.3 -> 5.13.4
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 4bb0f5deef1..82defad373b 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.3";
+  version = "5.13.4";
 
   # 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 = "1ir80wn019kslv6ysiqxdvarrjlr8b3skk1s43cwki3x2cjnxskq";
+    sha256 = "0v3x1q1r0r8lyjg5hsj7yayfxqcgfj01p86ya4s0i9jaclpwv4ki";
   };
 
   kernelTests = args.kernelTests or [ nixosTests.kernel-generic.linux_5_13 ];