summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorYurii Matsiuk <ymatsiuk@users.noreply.github.com>2021-06-03 08:29:19 +0200
committerTim Steinbach <NeQuissimus@users.noreply.github.com>2021-06-08 14:21:06 -0400
commit9ade9c3a724d5fde361391c309b1926482fe73f3 (patch)
treeab126bda1e58962a424d06989b190cfb055c9467 /pkgs
parent51bb9f3e9ab6161a3bf7746e20b955712cef618b (diff)
downloadnixpkgs-9ade9c3a724d5fde361391c309b1926482fe73f3.tar
nixpkgs-9ade9c3a724d5fde361391c309b1926482fe73f3.tar.gz
nixpkgs-9ade9c3a724d5fde361391c309b1926482fe73f3.tar.bz2
nixpkgs-9ade9c3a724d5fde361391c309b1926482fe73f3.tar.lz
nixpkgs-9ade9c3a724d5fde361391c309b1926482fe73f3.tar.xz
nixpkgs-9ade9c3a724d5fde361391c309b1926482fe73f3.tar.zst
nixpkgs-9ade9c3a724d5fde361391c309b1926482fe73f3.zip
linux: 5.10.40 -> 5.10.41
Diffstat (limited to 'pkgs')
-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 ae8f5095307..7b4636f332d 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.40";
+  version = "5.10.41";
 
   # 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 = "091g9g29m4vh66bxihiylyprb3cxr8cy4m494klb2lkirlx8103l";
+    sha256 = "0wb739q7dha8nxkd72x42k4in5nw633yw065ppwc8rq7x2fpa17n";
   };
 
   kernelTests = args.kernelTests or [ nixosTests.kernel-generic.linux_5_10 ];