linux: 5.4.226 -> 5.4.227

This commit is contained in:
Maximilian Bosch 2022-12-16 17:58:56 +01:00
parent 0d9e47d655
commit e084dd9bff
No known key found for this signature in database
GPG Key ID: 9A6EEA275CA5BE0A

View File

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