summary refs log tree commit diff
path: root/pkgs/os-specific
diff options
context:
space:
mode:
authorTredwellGit <tredwell@tutanota.com>2021-05-09 16:51:39 +0000
committerTredwellGit <tredwell@tutanota.com>2021-05-09 16:51:39 +0000
commit2161af8d3c5f57279598395ace47bd8e3994f06b (patch)
tree48533e3268ffa62cc235bb82a0aaa2a5f5f8000e /pkgs/os-specific
parent94ce86210197f75a8bcab9ff04f273f43ce1910f (diff)
downloadnixpkgs-2161af8d3c5f57279598395ace47bd8e3994f06b.tar
nixpkgs-2161af8d3c5f57279598395ace47bd8e3994f06b.tar.gz
nixpkgs-2161af8d3c5f57279598395ace47bd8e3994f06b.tar.bz2
nixpkgs-2161af8d3c5f57279598395ace47bd8e3994f06b.tar.lz
nixpkgs-2161af8d3c5f57279598395ace47bd8e3994f06b.tar.xz
nixpkgs-2161af8d3c5f57279598395ace47bd8e3994f06b.tar.zst
nixpkgs-2161af8d3c5f57279598395ace47bd8e3994f06b.zip
linux: 5.10.32 -> 5.10.35
Diffstat (limited to 'pkgs/os-specific')
-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 cd09eadea1d..f40e7740c45 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 ];