linux: 5.15.4 -> 5.15.6

(cherry picked from commit 43df89f381)
This commit is contained in:
TredwellGit
2021-12-02 07:53:00 +00:00
committed by github-actions[bot]
parent 810189823c
commit 65e4feff6e

View File

@@ -3,7 +3,7 @@
with lib;
buildLinux (args // rec {
version = "5.15.4";
version = "5.15.6";
# 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 = "1jnbk7mb3s5xc0a23qd07n28dls9y94cdv2bdy71bxk5bsvhz7al";
sha256 = "1w0plw9rzk2c0g8yxzwj7c6wkq538sy56mx1skmf58wrl83bmsdk";
};
} // (args.argsOverride or { }))