summary refs log tree commit diff
path: root/pkgs/os-specific/linux/kernel/linux-5.15.nix
diff options
context:
space:
mode:
authorgithub-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>2022-07-22 15:34:59 +0000
committerGitHub <noreply@github.com>2022-07-22 15:34:59 +0000
commitb4832bac5219ae4e51417e6ba64eafc63ba1ea23 (patch)
tree98f010fea40957a8bb738371ae9a35fa91fc1fe0 /pkgs/os-specific/linux/kernel/linux-5.15.nix
parent8998b24ad273bc8cc3729bdbab23293d9731b74f (diff)
parent64c3ef854f7ba3cb87bbf6ab41f285c101e83366 (diff)
downloadnixpkgs-b4832bac5219ae4e51417e6ba64eafc63ba1ea23.tar
nixpkgs-b4832bac5219ae4e51417e6ba64eafc63ba1ea23.tar.gz
nixpkgs-b4832bac5219ae4e51417e6ba64eafc63ba1ea23.tar.bz2
nixpkgs-b4832bac5219ae4e51417e6ba64eafc63ba1ea23.tar.lz
nixpkgs-b4832bac5219ae4e51417e6ba64eafc63ba1ea23.tar.xz
nixpkgs-b4832bac5219ae4e51417e6ba64eafc63ba1ea23.tar.zst
nixpkgs-b4832bac5219ae4e51417e6ba64eafc63ba1ea23.zip
Merge staging-next into staging
Diffstat (limited to 'pkgs/os-specific/linux/kernel/linux-5.15.nix')
-rw-r--r--pkgs/os-specific/linux/kernel/linux-5.15.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/os-specific/linux/kernel/linux-5.15.nix b/pkgs/os-specific/linux/kernel/linux-5.15.nix
index 9735868b141..f286e1bfea0 100644
--- a/pkgs/os-specific/linux/kernel/linux-5.15.nix
+++ b/pkgs/os-specific/linux/kernel/linux-5.15.nix
@@ -3,7 +3,7 @@
 with lib;
 
 buildLinux (args // rec {
-  version = "5.15.55";
+  version = "5.15.56";
 
   # 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,6 +13,6 @@ buildLinux (args // rec {
 
   src = fetchurl {
     url = "mirror://kernel/linux/kernel/v5.x/linux-${version}.tar.xz";
-    sha256 = "1k7x7fp675wglfd357n7hjidnm3j8zj3gcymyazg6fkcid8bvxhy";
+    sha256 = "08w2kgc0v0ld7nxbary7d9fr2vxrsmqby7l4fhf7njgi6wsbp9p9";
   };
 } // (args.argsOverride or { }))