linux: 5.4.93 -> 5.4.94

This commit is contained in:
Tim Steinbach 2021-02-01 10:30:57 -05:00
parent ab661e6635
commit e829b8379c
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.93";
version = "5.4.94";
# 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 = "08nmwd13z10866pc16fqbj41krnvk6hxkl4nmhdkpk346r04jx6k";
sha256 = "0f9bml584g6jb822j7xyxx9j2g3s49p08xz4bkx9lbiinxyzagf2";
};
} // (args.argsOverride or {}))