summary refs log tree commit diff
path: root/pkgs/os-specific/linux/kernel/linux-5.13.nix
diff options
context:
space:
mode:
authorgithub-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>2021-07-20 18:01:42 +0000
committerGitHub <noreply@github.com>2021-07-20 18:01:42 +0000
commit23c6d36ba0f72916be4c69c9d353a1999c6b01a0 (patch)
tree1fdbd95e934a9aa66102d69dbb2670e738713e5a /pkgs/os-specific/linux/kernel/linux-5.13.nix
parentab5f5fb163ddc8e285c087a0e984a505ee779b77 (diff)
parent61eb7e2e9e36e062a3bd323155441f78e9fcd7ed (diff)
downloadnixpkgs-23c6d36ba0f72916be4c69c9d353a1999c6b01a0.tar
nixpkgs-23c6d36ba0f72916be4c69c9d353a1999c6b01a0.tar.gz
nixpkgs-23c6d36ba0f72916be4c69c9d353a1999c6b01a0.tar.bz2
nixpkgs-23c6d36ba0f72916be4c69c9d353a1999c6b01a0.tar.lz
nixpkgs-23c6d36ba0f72916be4c69c9d353a1999c6b01a0.tar.xz
nixpkgs-23c6d36ba0f72916be4c69c9d353a1999c6b01a0.tar.zst
nixpkgs-23c6d36ba0f72916be4c69c9d353a1999c6b01a0.zip
Merge staging-next into staging
Diffstat (limited to 'pkgs/os-specific/linux/kernel/linux-5.13.nix')
-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 da90ee69de8..4bb0f5deef1 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.2";
+  version = "5.13.3";
 
   # 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 = "0dx9khk7fh003xyb3xix0kc0rmjncg7ric5p830zhadnrw4hv563";
+    sha256 = "1ir80wn019kslv6ysiqxdvarrjlr8b3skk1s43cwki3x2cjnxskq";
   };
 
   kernelTests = args.kernelTests or [ nixosTests.kernel-generic.linux_5_13 ];