linux: 5.4.90 -> 5.4.91

This commit is contained in:
Tim Steinbach 2021-01-20 09:58:38 -05:00
parent 463f322988
commit 3141316d4d
No known key found for this signature in database
GPG Key ID: 1B40229F19262402

View File

@ -3,7 +3,7 @@
with lib;
buildLinux (args // rec {
version = "5.4.90";
version = "5.4.91";
# 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 = "06pscvxjkpz35y6kbmyzdvn9mm4p7pfg0d49chi1q61z0sy3crv4";
sha256 = "05swzh4gb0mk6wzza0k6b0283cygkvj8a2d2b2gab6sb0fxn208f";
};
} // (args.argsOverride or {}))