linux: 5.15.47 -> 5.15.49

(cherry picked from commit ca439ff6a6)
This commit is contained in:
Maximilian Bosch
2022-06-23 01:41:52 +02:00
parent 3e24466c4d
commit 9009b02b05

View File

@@ -3,7 +3,7 @@
with lib;
buildLinux (args // rec {
version = "5.15.47";
version = "5.15.49";
# 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 = "1700js21yimx8rz4bsglszry564l2ycmmcr36rdqspzbmlx5w8wb";
sha256 = "1p2r02h2z0j34hpkp3kr4741pr15ii72b94zllravx27pa9phj9j";
};
} // (args.argsOverride or { }))