summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaximilian Bosch <maximilian@mbosch.me>2022-05-06 00:21:02 +0200
committergithub-actions[bot] <github-actions[bot]@users.noreply.github.com>2022-05-06 12:10:40 +0000
commit79af0c0eef33979ecef1dc20c3b12011aa629898 (patch)
tree6a8525d91beceefc404685c790ef0cc502f829ce
parentlinux: 4.19.240 -> 4.19.241 (diff)
downloadnixpkgs-79af0c0eef33979ecef1dc20c3b12011aa629898.tar.gz
linux: 5.15.36 -> 5.15.37
(cherry picked from commit f93833182bc4f09dc1212dc09c27501ff967a82d)
-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 5f0ba39e20b4..c83c743b8b2a 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.36";
+ version = "5.15.37";
# 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 = "1466557034q1fzvpy8vwj8ps3cv2q8s7z76af9y1jz4kgaqmsd1n";
+ sha256 = "09n0l9ly111r6jbpgz1kw2q4n4mmcv5jxfhs5bcsiyjp44d0kgqq";
};
} // (args.argsOverride or { }))