linux: 4.19.230 -> 4.19.231

This commit is contained in:
TredwellGit 2022-02-25 00:46:42 +00:00
parent a8a1714ba0
commit 8585beaf0a

View File

@ -3,7 +3,7 @@
with lib;
buildLinux (args // rec {
version = "4.19.230";
version = "4.19.231";
# 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 = "107sqv4izdnazscwhyam88vbinsvnd33z8agn4awc42hkqh9l20p";
sha256 = "0cc1ipar37gvzr1xdbda5hghnvjmy8pk8an8hs2jspmhnfrj6cb7";
};
} // (args.argsOverride or {}))