linux: 4.19.219 -> 4.19.220

This commit is contained in:
TredwellGit 2021-12-09 06:28:48 +00:00
parent 9cc83854e0
commit 8a9c48a65d

View File

@ -3,7 +3,7 @@
with lib;
buildLinux (args // rec {
version = "4.19.219";
version = "4.19.220";
# 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/v4.x/linux-${version}.tar.xz";
sha256 = "1nq9228zm24d8azvv6d6r5iw8lfkb7z5lblyhk137mydzdqwsklg";
sha256 = "0q5hrh6q2f2r97nff136db7367p3hn0la2gl7q4knms3g8fis1jq";
};
} // (args.argsOverride or {}))