linux: 5.4.159 -> 5.4.160

This commit is contained in:
TredwellGit 2021-11-18 21:11:12 +00:00
parent be5a54e952
commit 83c1df7574

View File

@ -3,7 +3,7 @@
with lib;
buildLinux (args // rec {
version = "5.4.159";
version = "5.4.160";
# 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 = "0hw68yjf0c8kahwra8hq863318cbyqc89f429z75scmb9rgk466p";
sha256 = "0n04nlg44l7p855lxkdz80x2avwm1pmrx1761cjmqv4w1qlq1c6l";
};
} // (args.argsOverride or {}))