linux: 4.19.236 -> 4.19.237

This commit is contained in:
TredwellGit 2022-03-28 09:06:08 +00:00
parent 9ee8097b31
commit f77a0e1934

View File

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