summary refs log tree commit diff
path: root/pkgs/os-specific/linux/kernel/linux-5.10.nix
diff options
context:
space:
mode:
authorJan Tojnar <jtojnar@gmail.com>2021-05-10 09:45:47 +0200
committerJan Tojnar <jtojnar@gmail.com>2021-05-10 09:45:47 +0200
commit594a8859129863e62326980556e3b5a6ee5252cb (patch)
tree91631f16fd8d92bb4f3dae42cf34b5d4021f5a47 /pkgs/os-specific/linux/kernel/linux-5.10.nix
parent680b33fe37d4b6fd0bd8fe596ed438c88bfb3637 (diff)
parentf4d69ad1f211b18f93d3b39d20d9d3c5a5b5fb71 (diff)
Merge branch 'staging-next' into staging
Diffstat (limited to 'pkgs/os-specific/linux/kernel/linux-5.10.nix')
-rw-r--r--pkgs/os-specific/linux/kernel/linux-5.10.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/os-specific/linux/kernel/linux-5.10.nix b/pkgs/os-specific/linux/kernel/linux-5.10.nix
index cd09eadea1d1e..f40e7740c45a3 100644
--- a/pkgs/os-specific/linux/kernel/linux-5.10.nix
+++ b/pkgs/os-specific/linux/kernel/linux-5.10.nix
@@ -3,7 +3,7 @@
 with lib;
 
 buildLinux (args // rec {
-  version = "5.10.32";
+  version = "5.10.35";
 
   # 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 = "1fnp0wyiswg8q4w89ssm1fz1ryfc1567fx08bz3fmf2cdqr8wkv4";
+    sha256 = "1zcqsjzqgcvlhkjwhzs6sxgbhzkfg898pbisivjqfymp8nfs2dxc";
   };
 
   kernelTests = args.kernelTests or [ nixosTests.kernel-generic.linux_5_10 ];