about summary refs log tree commit diff
diff options
context:
space:
mode:
authorTredwellGit <tredwell@tutanota.com>2022-04-10 09:41:12 +0000
committerTredwellGit <tredwell@tutanota.com>2022-04-10 09:41:12 +0000
commit2827192c14f0be6bb01dded023e44c80a775208e (patch)
tree790b3948eab16001006609004479f68f058d9d1c
parent46e8fed971b33b0e8cd08d200a23a709fe4a8b71 (diff)
linux: 5.15.32 -> 5.15.33
-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 dab27c119aa57..4cf4fbf8e78b1 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.32";
+  version = "5.15.33";
 
   # 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;
@@ -15,6 +15,6 @@ buildLinux (args // rec {
 
   src = fetchurl {
     url = "mirror://kernel/linux/kernel/v5.x/linux-${version}.tar.xz";
-    sha256 = "11nz2w6hgwy6va6sxf4ic1s4kv24zbpssgjxsq6n321h4bxcsqql";
+    sha256 = "1i590npi00w5d1znmamkm3sb293k5k4xd37miwnvz7hg17k1f2n3";
   };
 } // (args.argsOverride or { }))