linux: 4.19.248 -> 4.19.249

(cherry picked from commit 34fe04da8e)
This commit is contained in:
Maximilian Bosch
2022-06-28 19:14:14 +02:00
parent 950b2e9235
commit be96a43b74

View File

@@ -3,7 +3,7 @@
with lib;
buildLinux (args // rec {
version = "4.19.248";
version = "4.19.249";
# 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 = "0cdflfk6l13slw1cawpkhpjzbbnffcbyffrh29p9jg73pdqx23y4";
sha256 = "14aiypira32hsw7wy9bhdw9rvfn705r0sb4415n9pfvi091bsjyf";
};
} // (args.argsOverride or {}))