summary refs log tree commit diff
path: root/pkgs/os-specific/linux/kernel
diff options
context:
space:
mode:
authorTredwellGit <tredwell@tutanota.com>2021-07-20 19:06:37 +0000
committerTredwellGit <tredwell@tutanota.com>2021-07-20 19:06:37 +0000
commitf61350ac8916d99611aaf5b8fcb6be120114c7e9 (patch)
tree4d40db3b0b238717dec678fb812aa328ab944a4d /pkgs/os-specific/linux/kernel
parentc6eff0d2f599621fa4936e2c605823e3489a7044 (diff)
downloadnixpkgs-f61350ac8916d99611aaf5b8fcb6be120114c7e9.tar
nixpkgs-f61350ac8916d99611aaf5b8fcb6be120114c7e9.tar.gz
nixpkgs-f61350ac8916d99611aaf5b8fcb6be120114c7e9.tar.bz2
nixpkgs-f61350ac8916d99611aaf5b8fcb6be120114c7e9.tar.lz
nixpkgs-f61350ac8916d99611aaf5b8fcb6be120114c7e9.tar.xz
nixpkgs-f61350ac8916d99611aaf5b8fcb6be120114c7e9.tar.zst
nixpkgs-f61350ac8916d99611aaf5b8fcb6be120114c7e9.zip
linux: 5.10.51 -> 5.10.52
Diffstat (limited to 'pkgs/os-specific/linux/kernel')
-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 23e4099438b..f59cca3e12f 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.51";
+  version = "5.10.52";
 
   # 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 = "1qkssvqk29svn10ws3lrnzfbmlvzrixkf7r7lslc7k3lqa9yiflm";
+    sha256 = "0ydf09wsg0pkjm9dk8y730ksg15p5rlbhq445zx8k191zah5g7kn";
   };
 
   kernelTests = args.kernelTests or [ nixosTests.kernel-generic.linux_5_10 ];