linux: 4.19.276 -> 4.19.277

(cherry picked from commit 3bdd65d54d)
This commit is contained in:
K900
2023-03-13 14:38:31 +03:00
committed by github-actions[bot]
parent f79e9fabc8
commit a12dbd3bee

View File

@@ -3,7 +3,7 @@
with lib;
buildLinux (args // rec {
version = "4.19.276";
version = "4.19.277";
# 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 = "1f8lcd47pba4jfycbbrd8vsqpf038x19rf80g3grzpvsgyaq1k1f";
sha256 = "137mjk6hzpr120bb6ky3b8q4jnkbgqla0cpgnhzpcng00aidk0pn";
};
} // (args.argsOverride or {}))