linux: 5.11.14 -> 5.11.16

(cherry picked from commit 079fca1541)
This commit is contained in:
Tim Steinbach
2021-04-26 10:38:21 -04:00
parent 68aecbfde9
commit 8a45ead8f4

View File

@@ -3,7 +3,7 @@
with lib;
buildLinux (args // rec {
version = "5.11.14";
version = "5.11.16";
# 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 = "1ia4wzh44lkvrbvnhdnnjcdyvqx2ihpbwkih7wqm1n5prhq38ql7";
sha256 = "0hqgai4r40xxlfqp1paxhn2g4i4yqvi1k473dddcxjrhs60kc5i1";
};
} // (args.argsOverride or {}))